Skip to content

Commit 92c5785

Browse files
authored
Improve types of invoke/env.pyi (#7780)
1 parent 460537c commit 92c5785

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stubs/invoke/invoke/env.pyi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import Any
22

33
class Environment:
4-
data: Any
5-
def __init__(self, config, prefix) -> None: ...
6-
def load(self): ...
4+
data: dict[str, Any]
5+
def __init__(self, config: dict[str, Any], prefix: str) -> None: ...
6+
def load(self) -> dict[str, Any]: ...

0 commit comments

Comments
 (0)