Skip to content
This repository has been archived by the owner on Nov 24, 2024. It is now read-only.

Commit

Permalink
fix: ruff formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
M0NsTeRRR committed Mar 1, 2024
1 parent f510cd7 commit 2a5472b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions napalm_fsos_ssh/fsos.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,9 +437,9 @@ def get_lldp_neighbors_detail(
entry["interface"] = entry["interface"].replace(
"Group", "port-channel"
)
commands[
entry["interface"]
] = f"show lldp neighbor {entry['interface']}"
commands[entry["interface"]] = (
f"show lldp neighbor {entry['interface']}"
)
else:
commands[interface] = [f"show lldp neighbor {interface}"]

Expand Down
1 change: 1 addition & 0 deletions tests/unit/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test fixtures."""

from builtins import super

import pytest
Expand Down

0 comments on commit 2a5472b

Please sign in to comment.