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

Commit

Permalink
poetry run ruff format
Browse files Browse the repository at this point in the history
  • Loading branch information
nedtwigg committed Apr 2, 2024
1 parent d4da1f6 commit 639f36d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions python/selfie-lib/selfie_lib/ArrayMap.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@

class ListBackedSet(Set[T], ABC):
@abstractmethod
def __len__(self) -> int:
...
def __len__(self) -> int: ...

@abstractmethod
def __getitem__(self, index: Union[int, slice]) -> Union[T, List[T]]:
...
def __getitem__(self, index: Union[int, slice]) -> Union[T, List[T]]: ...

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

0 comments on commit 639f36d

Please sign in to comment.