Skip to content

Commit

Permalink
SW-3833 fix bug in logic (#1802)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josef-MrBeam authored Sep 19, 2023
1 parent 2ee9177 commit 4093efa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octoprint_mrbeam/iobeam/dust_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ def _validate_values(self):

# check if one of the values is None
value_is_none_result, value_is_none_errs = self._check_if_one_value_is_none()
if not value_is_none_result:
if value_is_none_result:
result = False
errs.extend(value_is_none_errs)

Expand Down

0 comments on commit 4093efa

Please sign in to comment.