Skip to content

Commit 5402273

Browse files
ignore types
1 parent d72d94d commit 5402273

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

packer/pack_types/pack_types.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
from .float_types import *
1717
from .int_types import *
1818

19-
int8 = Type[Int["L1"]]
20-
int16 = Type[Int["L2"]]
21-
int32 = Type[Int["L4"]]
22-
int64 = Type[Int["L8"]]
19+
int8 = Type[Int["L1"]] # type: ignore
20+
int16 = Type[Int["L2"]] # type: ignore
21+
int32 = Type[Int["L4"]] # type: ignore
22+
int64 = Type[Int["L8"]] # type: ignore
2323

24-
uint8 = Type[UInt["L1"]]
25-
uint16 = Type[UInt["L2"]]
26-
uint32 = Type[UInt["L4"]]
27-
uint64 = Type[UInt["L8"]]
24+
uint8 = Type[UInt["L1"]] # type: ignore
25+
uint16 = Type[UInt["L2"]] # type: ignore
26+
uint32 = Type[UInt["L4"]] # type: ignore
27+
uint64 = Type[UInt["L8"]] # type: ignore
2828

29-
float32 = Type[Float[4]]
30-
float64 = Type[Float[8]]
29+
float32 = Type[Float[4]] # type: ignore
30+
float64 = Type[Float[8]] # type: ignore

0 commit comments

Comments
 (0)