6 lines
71 B
Python
6 lines
71 B
Python
from enum import Enum
|
|
|
|
class CommMethod(Enum):
|
|
USB = 0
|
|
LAN = 1
|