Skip to content

Commit

Permalink
ignore types
Browse files Browse the repository at this point in the history
  • Loading branch information
biggus-developerus committed Dec 26, 2024
1 parent d72d94d commit 5402273
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions packer/pack_types/pack_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
from .float_types import *
from .int_types import *

int8 = Type[Int["L1"]]
int16 = Type[Int["L2"]]
int32 = Type[Int["L4"]]
int64 = Type[Int["L8"]]
int8 = Type[Int["L1"]] # type: ignore
int16 = Type[Int["L2"]] # type: ignore
int32 = Type[Int["L4"]] # type: ignore
int64 = Type[Int["L8"]] # type: ignore

uint8 = Type[UInt["L1"]]
uint16 = Type[UInt["L2"]]
uint32 = Type[UInt["L4"]]
uint64 = Type[UInt["L8"]]
uint8 = Type[UInt["L1"]] # type: ignore
uint16 = Type[UInt["L2"]] # type: ignore
uint32 = Type[UInt["L4"]] # type: ignore
uint64 = Type[UInt["L8"]] # type: ignore

float32 = Type[Float[4]]
float64 = Type[Float[8]]
float32 = Type[Float[4]] # type: ignore
float64 = Type[Float[8]] # type: ignore

0 comments on commit 5402273

Please sign in to comment.