Skip to content
This repository was archived by the owner on Apr 4, 2024. It is now read-only.

Commit 639f36d

Browse files
committed
poetry run ruff format
1 parent d4da1f6 commit 639f36d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

python/selfie-lib/selfie_lib/ArrayMap.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@
99

1010
class ListBackedSet(Set[T], ABC):
1111
@abstractmethod
12-
def __len__(self) -> int:
13-
...
12+
def __len__(self) -> int: ...
1413

1514
@abstractmethod
16-
def __getitem__(self, index: Union[int, slice]) -> Union[T, List[T]]:
17-
...
15+
def __getitem__(self, index: Union[int, slice]) -> Union[T, List[T]]: ...
1816

1917
def __contains__(self, item: object) -> bool:
2018
for i in range(len(self)):

0 commit comments

Comments
 (0)