Skip to content

Commit e504b6a

Browse files
authored
remove blank lines after overloads
1 parent 5abe7d0 commit e504b6a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

vector/2e-type-hints/vector_v2.py

-2
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,9 @@ def __len__(self):
149149
@overload
150150
def __getitem__(self: T, key: slice) -> T:
151151
...
152-
153152
@overload
154153
def __getitem__(self, key: SupportsIndex) -> float:
155154
...
156-
157155
def __getitem__(self, key):
158156
if isinstance(key, slice): # <1>
159157
cls = type(self) # <2>

0 commit comments

Comments
 (0)