Skip to content

Commit fe050cd

Browse files
committed
fixup! fixup! fixup! Use TYPE_CHECKING instead of False
1 parent 45b4099 commit fe050cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_pytest/compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from _pytest.outcomes import fail
2929
from _pytest.outcomes import TEST_OUTCOME
3030

31-
if sys.version_info <= (3, 5, 2):
31+
if sys.version_info < (3, 5, 2):
3232
from typing_extensions import TYPE_CHECKING
3333
else:
3434
from typing import TYPE_CHECKING

0 commit comments

Comments
 (0)