Skip to content

Commit 35955f9

Browse files
undo capitalization
1 parent 0ef2618 commit 35955f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3091,7 +3091,7 @@ def __new__(cls, name, bases, ns, total=True, closed=None,
30913091
"""
30923092
for base in bases:
30933093
if type(base) is not _TypedDictMeta and base is not Generic:
3094-
raise TypeError('Cannot inherit from both a TypedDict type '
3094+
raise TypeError('cannot inherit from both a TypedDict type '
30953095
'and a non-TypedDict base class')
30963096
if closed is not None and extra_items is not NoExtraItems:
30973097
raise TypeError(f"Cannot combine closed={closed!r} and extra_items")

0 commit comments

Comments
 (0)