Skip to content

Commit 4e5c448

Browse files
author
Benjamin Krull
committed
fix: explicit dict type
1 parent a29779b commit 4e5c448

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sw360/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def _update_external_ids(self, current_data: Dict[str, Any], ext_id_name: str, e
220220

221221
return (old_value, ext_id_data, update)
222222

223-
def _add_params(self, url: str, params: dict) -> str:
223+
def _add_params(self, url: str, params: Dict[str, str]) -> str:
224224
"""Add the given parameter to the given url"""
225225

226226
query_string = urlencode(params)

0 commit comments

Comments
 (0)