mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-24 20:12:08 +08:00
Enable redundant-self mypy error code (#11056)
This commit is contained in:
@@ -233,7 +233,7 @@ if sys.version_info >= (3, 8):
|
||||
def make(cls, source: ZipFile) -> CompleteDirs: ...
|
||||
@overload
|
||||
@classmethod
|
||||
def make(cls: type[Self], source: StrPath | IO[bytes]) -> Self: ...
|
||||
def make(cls, source: StrPath | IO[bytes]) -> Self: ...
|
||||
|
||||
class Path:
|
||||
root: CompleteDirs
|
||||
|
||||
@@ -268,6 +268,8 @@ def run_mypy(
|
||||
"--allow-subclassing-any",
|
||||
"--enable-error-code",
|
||||
"ignore-without-code",
|
||||
"--enable-error-code",
|
||||
"redundant-self",
|
||||
"--config-file",
|
||||
temp.name,
|
||||
]
|
||||
|
||||
@@ -63,6 +63,8 @@ def run_mypy_as_subprocess(directory: str, platform: str, version: str) -> Retur
|
||||
"possibly-undefined",
|
||||
"--enable-error-code",
|
||||
"redundant-expr",
|
||||
"--enable-error-code",
|
||||
"redundant-self",
|
||||
"--custom-typeshed-dir",
|
||||
".",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user