Skip to content

Commit

Permalink
netbox: fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: kimpaller <[email protected]>
  • Loading branch information
kimpaller committed Dec 5, 2024
1 parent 3899177 commit 299d91f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nebula/netbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def update_status(self, device_id, status):
def log_journal(
self, device_id, author_id, kind="info", comments="Automated journal entry"
):
kinds = ["info", "success", "warning", "danger "]
kinds = ["info", "success", "warning", "danger"]
if kind not in kinds:
raise ValueError(f"kind only accepts {kinds}")
self.nb.extras.journal_entries.create(
Expand Down

0 comments on commit 299d91f

Please sign in to comment.