You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the ParameterManager class (located in src/workflow/ParameterManager.py), the method get_parameters_from_json is currently annotated with a return type of None, even though it always returns a dictionary.
Current Signature:
defget_parameters_from_json(self) ->None:
The text was updated successfully, but these errors were encountered:
Hi, I've opened pr #221 to fix the issue by updating the return type of get_parameters_from_json from None to dict. Please review the changes. Thanks...
In the
ParameterManager
class (located insrc/workflow/ParameterManager.py
), the methodget_parameters_from_json
is currently annotated with a return type ofNone
, even though it always returns a dictionary.Current Signature:
The text was updated successfully, but these errors were encountered: