remove imports from TYPE_CHECKING (py37+)

Committed via https://github.com/asottile/all-repos
This commit is contained in:
Anthony Sottile 2022-07-04 17:57:38 -04:00
parent 170335cbb6
commit d8b59300ce
2 changed files with 2 additions and 8 deletions

View file

@ -2,13 +2,10 @@ from __future__ import annotations
import os.path
from typing import Mapping
from typing import TYPE_CHECKING
from typing import NoReturn
from identify.identify import parse_shebang_from_file
if TYPE_CHECKING:
from typing import NoReturn
class ExecutableNotFoundError(OSError):
def to_output(self) -> tuple[int, bytes, None]: