Skip to content

Commit

Permalink
[QMI-094] Use MutableMapping for input arguments, if they are to be g…
Browse files Browse the repository at this point in the history
…eneric key:value mapped types.
  • Loading branch information
heevasti committed Aug 14, 2024
1 parent d6f0292 commit dc7b048
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qmi/core/transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def __init__(self,
self._keywords = keywords

def parse_parameter_strings(
self, transport_descriptor: str, default_parameters: Optional[Dict[str, Any]] = None
self, transport_descriptor: str, default_parameters: Optional[MutableMapping[str, Any]] = None
) -> Dict[str, Any]:
"""Method for parsing transport descriptor strings.
Expand Down

0 comments on commit dc7b048

Please sign in to comment.