From 92c578546a646cfc02d8f1fb0fc19be8c4ce3d75 Mon Sep 17 00:00:00 2001 From: kasium <15907922+kasium@users.noreply.github.com> Date: Thu, 5 May 2022 08:12:51 +0200 Subject: [PATCH] Improve types of invoke/env.pyi (#7780) --- stubs/invoke/invoke/env.pyi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stubs/invoke/invoke/env.pyi b/stubs/invoke/invoke/env.pyi index 38ffc6721..b7feeb475 100644 --- a/stubs/invoke/invoke/env.pyi +++ b/stubs/invoke/invoke/env.pyi @@ -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]: ...