Skip to content

Commit

Permalink
fix issue python#15747 4
Browse files Browse the repository at this point in the history
  • Loading branch information
JaylenLuc committed Sep 14, 2023
1 parent ebebd61 commit dab8f9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion mypy/argmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,8 @@ def f(x: int, *args: str) -> None: ...
needs a separate instance since instances have per-call state.
"""

import mypy
import mypy.checker
import mypy.nodes

def __init__(
self,
Expand Down
3 changes: 2 additions & 1 deletion mypy/infer.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ class ArgumentInferContext(NamedTuple):
iterable_type: Instance


import mypy
import mypy.checker
import mypy.nodes


def infer_function_type_arguments(
Expand Down

0 comments on commit dab8f9b

Please sign in to comment.