-
-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[pre-commit.ci] pre-commit autoupdate #311
Conversation
updates: - [github.com/psf/black: 23.12.1 → 24.1.1](psf/black@23.12.1...24.1.1)
for more information, see https://pre-commit.ci
@@ -8,8 +8,6 @@ | |||
@runtime_checkable | |||
class SizedIndexable(Iterable[T], Protocol[T]): | |||
@overload | |||
def __getitem__(self, key: slice) -> SizedIndexable[T]: | |||
... | |||
def __getitem__(self, key: slice) -> SizedIndexable[T]: ... |
Check notice
Code scanning / CodeQL
Statement has no effect Note
|
||
def __len__(self) -> int: | ||
... | ||
def __len__(self) -> int: ... |
Check notice
Code scanning / CodeQL
Statement has no effect Note
@@ -33,14 +34,12 @@ | |||
|
|||
|
|||
class Comparable(Protocol): | |||
def __lt__(self, other: Any) -> bool: | |||
... | |||
def __lt__(self, other: Any) -> bool: ... |
Check notice
Code scanning / CodeQL
Statement has no effect Note
|
||
def __le__(self, other: Any) -> bool: | ||
"""Hanya untuk suppress LGTM alert.""" | ||
|
||
def __gt__(self, other: Any) -> bool: | ||
... | ||
def __gt__(self, other: Any) -> bool: ... |
Check notice
Code scanning / CodeQL
Statement has no effect Note
updates: