File tree 2 files changed +5
-3
lines changed
opentelemetry-sdk/src/opentelemetry/sdk/util
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 17
17
strict_equality = True
18
18
strict_optional = True
19
19
no_implicit_optional = True
20
- no_implicit_reexport = True
20
+ no_implicit_reexport = True
21
+ # https://mypy.readthedocs.io/en/stable/running_mypy.html#follow-imports
22
+ follow_imports = silent
Original file line number Diff line number Diff line change @@ -49,8 +49,8 @@ class BoundedList(Sequence[_T]):
49
49
@overload
50
50
def __getitem__ (self , s : slice ) -> Sequence [_T ]: ...
51
51
def __len__ (self ) -> int : ...
52
- def append (self , item : _T ): ...
53
- def extend (self , seq : Sequence [_T ]): ...
52
+ def append (self , item : _T ) -> None : ...
53
+ def extend (self , seq : Sequence [_T ]) -> None : ...
54
54
@classmethod
55
55
def from_seq (cls , maxlen : int , seq : Iterable [_T ]) -> BoundedList [_T ]: ... # pylint: disable=undefined-variable
56
56
You can’t perform that action at this time.
0 commit comments