Skip to content

Commit

Permalink
fixed E1101 (no-member)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chr157i4n committed Nov 7, 2023
1 parent ce668d1 commit 54850e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TMC_2209/TMC_2209_StepperDriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ def reverse_direction_pin(self):
reverses the motor shaft direction
"""
self._direction = not self._direction
GPIO.output(self._pin_dir, self.direction)
GPIO.output(self._pin_dir, self._direction)



Expand Down

0 comments on commit 54850e1

Please sign in to comment.