Skip to content

Commit

Permalink
improve wording on reportUnsafeMultipleInheritance error message
Browse files Browse the repository at this point in the history
  • Loading branch information
DetachHead committed Jun 25, 2024
1 parent 876baea commit a160d55
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@
"typeIgnoreCommentWithoutRule": "`type: ignore` comment must specify a rule (eg. `# type: ignore[ruleName]`)",
"implicitRelativeImport": "Import from `{importName}` is implicitly relative and will not work if this file is imported as a module",
"invalidCast": "Conversion of type `{fromType}` to type `{toType}` may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to `object` first.",
"multipleInheritance": "Multiple inheritance is not allowed because more than one base class has an `__init__` or `__new__` method: {classes}"
"multipleInheritance": "Multiple inheritance is not allowed because the following base classes contain `__init__` or `__new__` methods that may not get called: {classes}"
},
"DiagnosticAddendum": {
"annotatedNotAllowed": "\"Annotated\" special form cannot be used with instance and class checks",
Expand Down

0 comments on commit a160d55

Please sign in to comment.