Skip to content

Commit

Permalink
Disable pylint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bofh69 committed Mar 6, 2024
1 parent 52e8941 commit b08ef79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nfc2klipper.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def set_spool_and_filament(url: str, spool: int, filament: int):
)
if response.status_code != 200:
raise ValueError(f"Request to moonraker failed: {response}")
except Exception as ex:
except Exception as ex: # pylint: disable=W0718
print(ex)

set_spool_and_filament.old_spool = spool
Expand Down

0 comments on commit b08ef79

Please sign in to comment.