fix network select enum

This commit is contained in:
suaveolent 2024-04-22 17:22:21 +02:00
parent 1e8d3635e7
commit b35e59adab

View File

@ -56,6 +56,10 @@ class NetmodeSelect(Enum):
SIM = 2
LAN = 3
def __int__(self):
"""Return the integer value of the network mode selection."""
return self.value
class NetworkState(Enum):
"""Network state."""