File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 1616from .float_types import *
1717from .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
You can’t perform that action at this time.
0 commit comments