mgamsby-lattice's picture
Upload sensAI-Generic-Object-Detection with upload_repo.py
44a2bac verified
Raw
History Blame Contribute Delete
270 Bytes
from enum import IntEnum
# Taken from https://v4.chriskrycho.com/2015/ctypes-structures-and-dll-exports.html
class CtypesEnum(IntEnum):
"""A ctypes-compatible IntEnum superclass."""
@classmethod
def from_param(cls, obj):
return int(obj)