Skip to content

Commit

Permalink
mini fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Miskler committed Aug 31, 2024
1 parent 3f9b082 commit f9681b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rivalcfg/mouse.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __init__(self, hid_device, mouse_profile, mouse_settings, command_approve_de
self.mouse_profile = mouse_profile
self.mouse_settings = mouse_settings
if command_approve_delay < self._MIN_COMMAND_APPROVE_DELAY:
ValueError(f"command_approve_delay is unsafe to use, with a delay of less than {self._MIN_COMMAND_APPROVE_DELAY} seconds")
raise ValueError(f"command_approve_delay is unsafe to use, with a delay of less than {self._MIN_COMMAND_APPROVE_DELAY} seconds")
else:
self._command_approve_delay = command_approve_delay

Expand Down

0 comments on commit f9681b3

Please sign in to comment.