Skip to content

Commit

Permalink
style: apply automated linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
megalinter-bot committed May 6, 2024
1 parent 439c899 commit 4d89ea3
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,13 @@ def __contains__(self, name: Any) -> bool:
return self.has_column(name)

@abstractmethod
def __eq__(self, other: object) -> bool:
...
def __eq__(self, other: object) -> bool: ...

def __getitem__(self, name: str) -> ExperimentalPolarsCell:
return self.get_value(name)

@abstractmethod
def __hash__(self) -> int:
...
def __hash__(self) -> int: ...

def __iter__(self) -> Iterator[Any]:
return iter(self.column_names)
Expand All @@ -36,8 +34,7 @@ def __len__(self) -> int:
return self.number_of_columns

@abstractmethod
def __sizeof__(self) -> int:
...
def __sizeof__(self) -> int: ...

# ------------------------------------------------------------------------------------------------------------------
# Properties
Expand Down

0 comments on commit 4d89ea3

Please sign in to comment.