Removed unused # noqa: F403 (#7032)

This commit is contained in:
Nikita Sobolev
2022-01-25 11:21:11 +03:00
committed by GitHub
parent 54a37d10b1
commit 9a89e09753
7 changed files with 7 additions and 7 deletions

View File

@@ -2,7 +2,7 @@ import sys
from typing import Any, Callable, TypeVar
if sys.platform != "win32":
from _curses import * # noqa: F403
from _curses import *
from _curses import _CursesWindow as _CursesWindow
_T = TypeVar("_T")