Skip to content

Commit

Permalink
Fix parameter typo
Browse files Browse the repository at this point in the history
  • Loading branch information
leoglonz authored Dec 3, 2024
1 parent 9f7fce5 commit 8b901ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hydroDL2/models/hbv/hbv.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__(
self.warm_up = config.get('warm_up', self.warm_up)
self.warm_up_states = config.get('warm_up_states', self.warm_up_states)
self.dy_drop = config.get('dy_drop', self.dy_drop)
self.dynamic_paramsarams = config['dynamic_params'].get('HBV', self.dynamic_params)
self.dynamic_params = config['dynamic_params'].get('HBV', self.dynamic_params)
self.variables = config.get('variables', self.variables)
self.routing = config.get('routing', self.routing)
self.comprout = config.get('comprout', self.comprout)
Expand Down

0 comments on commit 8b901ca

Please sign in to comment.