We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2da642d commit 47b5b98Copy full SHA for 47b5b98
1 file changed
src/xulbux/base/types.py
@@ -1,9 +1,10 @@
1
-from ..color import rgba, hsla, hexa
2
-
3
-from typing import Annotated, TypeAlias, TypedDict, Optional, Union, Any
+from typing import TYPE_CHECKING, Annotated, TypeAlias, TypedDict, Optional, Union, Any
4
import regex as _rx
5
import re as _re
6
+if TYPE_CHECKING:
+ from ..color import rgba, hsla, hexa
7
+
8
#
9
################################################## COLOR ##################################################
10
0 commit comments