7 lines
122 B
Python
7 lines
122 B
Python
from enum import Enum
|
|
|
|
class ConnectionType(Enum):
|
|
'usb' = 1
|
|
'bluetooth' = 2
|
|
'wireless' = 3
|
|
'unknown' = -1 |