From 65838450ee82ea8b985c8f2e7ebd06df1ca4b509 Mon Sep 17 00:00:00 2001 From: profitroll Date: Sun, 6 Aug 2023 21:22:24 +0200 Subject: [PATCH] Fixed typing of Dict --- tests/test_nested_set.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_nested_set.py b/tests/test_nested_set.py index 3cffffa..5dc4fee 100644 --- a/tests/test_nested_set.py +++ b/tests/test_nested_set.py @@ -1,4 +1,4 @@ -from typing import Any, List +from typing import Any, Dict, List import pytest @@ -27,7 +27,7 @@ from libbot import sync ], ) def test_nested_set_valid( - target: dict[str, Any], + target: Dict[str, Any], value: Any, path: List[str], create_missing: bool, @@ -51,7 +51,7 @@ def test_nested_set_valid( ], ) def test_nested_set_invalid( - target: dict[str, Any], + target: Dict[str, Any], value: Any, path: List[str], create_missing: bool,