Skip to content

Commit 0b15de0

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent fd4022f commit 0b15de0

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

mypy/checker.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8595,11 +8595,7 @@ def is_singleton_value(t: Type) -> bool:
85958595
return isinstance(t, LiteralType) or t.is_singleton_type()
85968596

85978597

8598-
BUILTINS_CUSTOM_EQ_CHECKS: Final = {
8599-
"builtins.bytes",
8600-
"builtins.bytearray",
8601-
"builtins.memoryview",
8602-
}
8598+
BUILTINS_CUSTOM_EQ_CHECKS: Final = {"builtins.bytes", "builtins.bytearray", "builtins.memoryview"}
86038599

86048600

86058601
def has_custom_eq_checks(t: Type) -> bool:

0 commit comments

Comments
 (0)