Skip to content

Commit 2e7d1d8

Browse files
committed
style: run pre-commit
1 parent 27af527 commit 2e7d1d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_typing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8478,7 +8478,7 @@ class TD2(TD1):
84788478
b: str
84798479

84808480
self.assertIs(TD2.__total__, True)
8481-
8481+
84828482
def test_total_with_assigned_value(self):
84838483
class TD(TypedDict):
84848484
__total__ = "some_value"
@@ -8487,7 +8487,7 @@ class TD(TypedDict):
84878487

84888488
class TD2(TypedDict, total=True):
84898489
__total__ = "some_value"
8490-
8490+
84918491
self.assertIs(TD2.__total__, True)
84928492

84938493
class TD3(TypedDict, total=False):

0 commit comments

Comments
 (0)