Skip to content

Commit

Permalink
fix type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtana committed Mar 17, 2024
1 parent 9936b96 commit 0b0e70e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyglinet/glinet_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


class GlInetApiCall:
def __init__(self, data: dict, session):
def __init__(self, data: Dict[str, Any], session):
self._session = session
for name, value in data.items():
setattr(self, name, self._wrap(value))
Expand Down Expand Up @@ -85,7 +85,7 @@ def __str__(self):


class GlInetApi:
def __init__(self, data: dict[str, Any], session):
def __init__(self, data: Dict[str, Any], session):
self._session = session
if isinstance(data, dict) and data.get("case_groups_data", None):
for name, value in data.get("case_groups_data").items():
Expand Down

0 comments on commit 0b0e70e

Please sign in to comment.