Skip to content

Commit

Permalink
Add missing types
Browse files Browse the repository at this point in the history
  • Loading branch information
eljulians committed Jun 9, 2021
1 parent aa739b9 commit c487d30
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions jira/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -1252,6 +1252,7 @@ def __init__(
)
if raw:
self._parse_raw(raw)
self.raw: Dict[str, Any] = cast(Dict[str, Any], self.raw)


class ServiceDesk(Resource):
Expand All @@ -1272,6 +1273,7 @@ def __init__(
)
if raw:
self._parse_raw(raw)
self.raw: Dict[str, Any] = cast(Dict[str, Any], self.raw)


class RequestType(Resource):
Expand All @@ -1285,6 +1287,7 @@ def __init__(
):
if raw:
self._parse_raw(raw)
self.raw: Dict[str, Any] = cast(Dict[str, Any], self.raw)

Resource.__init__(
self,
Expand Down

0 comments on commit c487d30

Please sign in to comment.