Skip to content

Commit 3c44699

Browse files
committed
update type annotations
1 parent 8c07710 commit 3c44699

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/xulbux/base/types.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
#
1010
################################################## COLOR ##################################################
1111

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."]
12+
Int_0_100 = Annotated[int, "An integer in range [0, 100]."]
13+
Int_0_255 = Annotated[int, "An integer in range [0, 255]."]
14+
Int_0_360 = Annotated[int, "An integer in range [0, 360]."]
15+
Float_0_1 = Annotated[float, "A float in range [0.0, 1.0]."]
1616

1717
AnyRgba: TypeAlias = Any
1818
AnyHsla: TypeAlias = Any

0 commit comments

Comments
 (0)