summaryrefslogtreecommitdiff
path: root/src/_pytest/debugging.py
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2020-10-02 13:02:22 -0700
committerAnthony Sottile <asottile@umich.edu>2020-10-02 19:50:10 -0700
commitbfadd4060e83a7c8dc6233643ad9fa4af7368806 (patch)
tree10b6915916b780d53eacec59193028918cea0598 /src/_pytest/debugging.py
parenta23666d55494f6960dfc8845757c391b5aedec0b (diff)
downloadpytest-bfadd4060e83a7c8dc6233643ad9fa4af7368806.tar.gz
py36+: from typing import Type: no longer need guard
Diffstat (limited to 'src/_pytest/debugging.py')
-rw-r--r--src/_pytest/debugging.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/_pytest/debugging.py b/src/_pytest/debugging.py
index 0fec6d817..2b3faf8dc 100644
--- a/src/_pytest/debugging.py
+++ b/src/_pytest/debugging.py
@@ -9,6 +9,7 @@ from typing import Generator
from typing import List
from typing import Optional
from typing import Tuple
+from typing import Type
from typing import TYPE_CHECKING
from typing import Union
@@ -24,8 +25,6 @@ from _pytest.nodes import Node
from _pytest.reports import BaseReport
if TYPE_CHECKING:
- from typing import Type
-
from _pytest.capture import CaptureManager
from _pytest.runner import CallInfo