Skip to content

Commit

Permalink
FIX force interface speed as a float
Browse files Browse the repository at this point in the history
  • Loading branch information
qaxi committed Mar 26, 2024
1 parent 751126a commit 7929c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion napalm_s350/s350.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ def get_interfaces(self):
entry = {
"is_up": is_up,
"is_enabled": is_enabled,
"speed": speed,
"speed": float(speed),
"mtu": mtu,
"last_flapped": -1.0,
"description": description,
Expand Down

0 comments on commit 7929c64

Please sign in to comment.