Remove no longer needed noqa's

This commit is contained in:
Ran Benita
2020-04-24 22:24:40 +03:00
parent 59a12e9ab3
commit 23c9856857
11 changed files with 18 additions and 18 deletions

View File

@@ -27,7 +27,7 @@ from _pytest.compat import TYPE_CHECKING
from _pytest.outcomes import fail
if TYPE_CHECKING:
from typing import Type # noqa: F401 (used in type string)
from typing import Type
BASE_TYPE = (type, STRING_TYPES)