Improve types of invoke/env.pyi (#7780)

This commit is contained in:
kasium
2022-05-05 08:12:51 +02:00
committed by GitHub
parent 460537c7f6
commit 92c578546a

View File

@@ -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]: ...