From 67e3f25ad14b4bc5cbcc5b60cf448fe28267aeda Mon Sep 17 00:00:00 2001 From: Thomas B Date: Wed, 19 Aug 2020 16:19:15 -0400 Subject: [PATCH] Add both Union and Sequence to typing import Resolve conflict. --- qt/aqt/gui_hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/aqt/gui_hooks.py b/qt/aqt/gui_hooks.py index ca8c4bb90..d96bfb277 100644 --- a/qt/aqt/gui_hooks.py +++ b/qt/aqt/gui_hooks.py @@ -7,7 +7,7 @@ See pylib/anki/hooks.py from __future__ import annotations -from typing import Any, Callable, List, Optional, Tuple, Sequence +from typing import Any, Callable, List, Optional, Tuple, Union, Sequence import anki import aqt