Skip to content

Commit ef6f79b

Browse files
authored
Merge pull request #23 from mheath/fix-linkspeed-enum
Fix link speeds enum
2 parents 4c5005a + 7ab2f5b commit ef6f79b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/tplink_omada_client/definitions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ class LinkSpeed(IntEnum):
9797
SPEED_10_MBPS = 1
9898
SPEED_100_MBPS = 2
9999
SPEED_1_GBPS = 3
100-
SPEED_10_GBPS = 4
100+
SPEED_2_5_GBPS = 4
101+
SPEED_10_GBPS = 5
101102

102103

103104
class LinkDuplex(IntEnum):

0 commit comments

Comments
 (0)