Skip to content

Commit e9fe462

Browse files
committed
lint
1 parent ed17083 commit e9fe462

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/typing_extensions.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,9 @@ def inner(func):
878878
return inner
879879

880880

881-
_NEEDS_SINGLETONMETA = not hasattr(typing, "NoDefault") or not hasattr(typing, "NoExtraItems")
881+
_NEEDS_SINGLETONMETA = (
882+
not hasattr(typing, "NoDefault") or not hasattr(typing, "NoExtraItems")
883+
)
882884

883885
if _NEEDS_SINGLETONMETA:
884886
class SingletonMeta(type):

0 commit comments

Comments
 (0)