Skip to content

Commit

Permalink
Call super().__init__() in FunctionArgDict.
Browse files Browse the repository at this point in the history
  • Loading branch information
rchen152 committed Apr 24, 2024
1 parent 592d4fa commit 5a3306b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytype/rewrite/abstract/internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def __init__(
constant: Optional[Dict[str, _Variable]] = None,
indefinite: bool = False,
):
self._ctx = ctx
super().__init__(ctx)
constant = constant or {}
self._check_keys(constant)
self.constant = constant
Expand Down

0 comments on commit 5a3306b

Please sign in to comment.