From c1addb49e1aade18966be81c385910d1e79f6157 Mon Sep 17 00:00:00 2001 From: Tom Carrio Date: Mon, 7 Nov 2022 22:34:04 -0500 Subject: [PATCH] style: run isort formatter Signed-off-by: Tom Carrio --- tests/hooks/test_hook_support.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/hooks/test_hook_support.py b/tests/hooks/test_hook_support.py index a0b492f..5a5d8e3 100644 --- a/tests/hooks/test_hook_support.py +++ b/tests/hooks/test_hook_support.py @@ -1,3 +1,5 @@ +from unittest.mock import ANY + from open_feature.flag_evaluation.flag_evaluation_details import FlagEvaluationDetails from open_feature.flag_evaluation.flag_type import FlagType from open_feature.hooks.hook_context import HookContext @@ -7,7 +9,7 @@ from open_feature.hooks.hook_support import ( before_hooks, error_hooks, ) -from unittest.mock import ANY +from open_feature.immutable_dict import MappingProxyType def test_error_hooks_run_error_method(mock_hook):