mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Improve types of invoke/env.pyi (#7780)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
from typing import Any
|
||||
|
||||
class Environment:
|
||||
data: Any
|
||||
def __init__(self, config, prefix) -> None: ...
|
||||
def load(self): ...
|
||||
data: dict[str, Any]
|
||||
def __init__(self, config: dict[str, Any], prefix: str) -> None: ...
|
||||
def load(self) -> dict[str, Any]: ...
|
||||
|
||||
Reference in New Issue
Block a user