We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ff8ded commit b8cd6f1Copy full SHA for b8cd6f1
mypy/plugins/default.py
@@ -426,10 +426,7 @@ def typed_dict_delitem_callback(ctx: MethodContext) -> Type:
426
return ctx.default_return_type
427
428
429
-_TP_DICT_MUTATING_METHODS: Final = frozenset({
430
- "update of TypedDict",
431
- "__ior__ of TypedDict",
432
-})
+_TP_DICT_MUTATING_METHODS: Final = frozenset({"update of TypedDict", "__ior__ of TypedDict"})
433
434
435
def typed_dict_update_signature_callback(ctx: MethodSigContext) -> CallableType:
0 commit comments