mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-22 09:38:50 +08:00
Remove unused import statements (#2282)
This commit is contained in:
committed by
Jelle Zijlstra
parent
f8041d08db
commit
86883d3df9
@@ -1,6 +1,6 @@
|
||||
"""Stub file for the '_bisect' module."""
|
||||
|
||||
from typing import Any, Sequence, TypeVar
|
||||
from typing import Sequence, TypeVar
|
||||
|
||||
_T = TypeVar('_T')
|
||||
def bisect(a: Sequence[_T], x: _T, lo: int = ..., hi: int = ...) -> int: ...
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Stubs for math
|
||||
# See: http://docs.python.org/2/library/math.html
|
||||
|
||||
from typing import Tuple, Iterable, Optional, SupportsFloat, SupportsInt
|
||||
from typing import Tuple, Iterable, SupportsFloat, SupportsInt
|
||||
|
||||
import sys
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
# Note: these stubs are incomplete. The more complex type
|
||||
# signatures are currently omitted.
|
||||
|
||||
from typing import Any, Optional, TypeVar, SupportsFloat
|
||||
from typing import Optional, SupportsFloat
|
||||
from abc import ABCMeta, abstractmethod
|
||||
import sys
|
||||
|
||||
|
||||
Reference in New Issue
Block a user