Skip to content

Commit 5821c0f

Browse files
committed
Remove not needed type annotation
1 parent 9c7ddcf commit 5821c0f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

curtsies/formatstringarray.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,7 @@ def __getitem__(
8888
if isinstance(slicetuple, slice):
8989
rowslice = normalize_slice(len(self.rows), slicetuple)
9090
return self.rows[rowslice]
91-
(
92-
row_slice_or_int,
93-
col_slice_or_int,
94-
) = slicetuple # type: Tuple[Union[int, slice], Union[int, slice]]
91+
row_slice_or_int, col_slice_or_int = slicetuple
9592
rowslice = normalize_slice(len(self.rows), row_slice_or_int)
9693
colslice = normalize_slice(self.num_columns, col_slice_or_int)
9794
# TODO clean up slices

0 commit comments

Comments
 (0)