Skip to content

Commit

Permalink
fixup! typing for diff
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyed committed Apr 9, 2020
1 parent b42b182 commit 7bea6c7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/_pytest/python.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@
from collections.abc import Sequence
from functools import partial
from types import ModuleType
from typing import Any
from typing import Callable
from typing import Dict
from typing import Iterable
from typing import List
from typing import Optional
from typing import Mapping
from typing import Tuple
from typing import Union

Expand Down Expand Up @@ -1445,7 +1447,7 @@ def __init__(
config=None,
callspec: Optional[CallSpec2] = None,
callobj=NOTSET,
keywords: Optional[Iterable[str]] = None,
keywords: Optional[Mapping[str, Any]] = None,
session=None,
fixtureinfo: Optional[FuncFixtureInfo] = None,
originalname=None,
Expand Down

0 comments on commit 7bea6c7

Please sign in to comment.