Skip to content

Commit 88293fe

Browse files
committed
Remove type hints
1 parent fcfdd92 commit 88293fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/unittest/case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1203,7 +1203,7 @@ def assertIsNot(self, expr1, expr2, msg=None):
12031203
standardMsg = 'unexpectedly identical: %s' % (safe_repr(expr1),)
12041204
self.fail(self._formatMessage(msg, standardMsg))
12051205

1206-
def assertDictEqual(self, d1: dict, d2: dict, msg: str | None = None):
1206+
def assertDictEqual(self, d1, d2, msg=None):
12071207
self.assertIsInstance(d1, dict, "First argument is not a dictionary")
12081208
self.assertIsInstance(d2, dict, "Second argument is not a dictionary")
12091209

0 commit comments

Comments
 (0)