Skip to content

Commit e50b118

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mypyc/ir/rtypes.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,9 @@ def __hash__(self) -> int:
494494
range_rprimitive: Final = RPrimitive("builtins.range", is_unboxed=False, is_refcounted=True)
495495

496496
# Python weak reference object
497-
weakref_rprimitive: Final = RPrimitive("weakref.ReferenceType", is_unboxed=False, is_refcounted=True)
497+
weakref_rprimitive: Final = RPrimitive(
498+
"weakref.ReferenceType", is_unboxed=False, is_refcounted=True
499+
)
498500

499501

500502
def is_tagged(rtype: RType) -> bool:

0 commit comments

Comments
 (0)