Skip to content

Commit

Permalink
Added docstring explaining the method
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuscardosodeveloper committed Oct 16, 2023
1 parent 8295b38 commit fffe595
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/tagoio_sdk/common/tagoio_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ def validateParams(self) -> None:
pass

def _converter_dict_param_filter(self, params: dict) -> None:
"""
Convert filter params to API format
Args:
params (dict): params to be converted
"""
if params is None or not params.get("filter"):
return
filter_params = params["filter"]
Expand Down

0 comments on commit fffe595

Please sign in to comment.