mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Remove dockerfile-parse from pyright's exclude (#9310)
Remove unnecessary dependency on types-six
This commit is contained in:
@@ -30,7 +30,6 @@
|
||||
"stubs/commonmark",
|
||||
"stubs/cryptography",
|
||||
"stubs/dateparser",
|
||||
"stubs/dockerfile-parse",
|
||||
"stubs/docutils",
|
||||
"stubs/Flask-Migrate",
|
||||
"stubs/Flask-SQLAlchemy",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
version = "1.2.*"
|
||||
requires = ["types-six"]
|
||||
|
||||
[tool.stubtest]
|
||||
ignore_missing_stub = false
|
||||
|
||||
@@ -21,10 +21,12 @@ class WordSplitter:
|
||||
def dequote(self) -> str: ...
|
||||
def split(self, maxsplit: int | None = ..., dequote: bool = ...) -> Generator[str | None, None, None]: ...
|
||||
|
||||
def extract_key_values(env_replace: bool, args: Mapping[str, str], envs: Mapping[str, str], instruction_value: str): ...
|
||||
def extract_key_values(
|
||||
env_replace: bool, args: Mapping[str, str], envs: Mapping[str, str], instruction_value: str
|
||||
) -> list[tuple[str, str]]: ...
|
||||
def get_key_val_dictionary(
|
||||
instruction_value, env_replace: bool = ..., args: Mapping[str, str] | None = ..., envs: Mapping[str, str] | None = ...
|
||||
): ...
|
||||
instruction_value: str, env_replace: bool = ..., args: Mapping[str, str] | None = ..., envs: Mapping[str, str] | None = ...
|
||||
) -> dict[str, str]: ...
|
||||
|
||||
class Context:
|
||||
args: MutableMapping[str, str]
|
||||
|
||||
Reference in New Issue
Block a user