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 8c07710 commit 3c44699Copy full SHA for 3c44699
1 file changed
src/xulbux/base/types.py
@@ -9,10 +9,10 @@
9
#
10
################################################## COLOR ##################################################
11
12
-Int_0_100 = Annotated[int, "An integer value between 0 and 100, inclusive."]
13
-Int_0_255 = Annotated[int, "An integer value between 0 and 255, inclusive."]
14
-Int_0_360 = Annotated[int, "An integer value between 0 and 360, inclusive."]
15
-Float_0_1 = Annotated[float, "A float value between 0.0 and 1.0, inclusive."]
+Int_0_100 = Annotated[int, "An integer in range [0, 100]."]
+Int_0_255 = Annotated[int, "An integer in range [0, 255]."]
+Int_0_360 = Annotated[int, "An integer in range [0, 360]."]
+Float_0_1 = Annotated[float, "A float in range [0.0, 1.0]."]
16
17
AnyRgba: TypeAlias = Any
18
AnyHsla: TypeAlias = Any
0 commit comments