Skip to content

Commit

Permalink
add missing indent
Browse files Browse the repository at this point in the history
  • Loading branch information
minco3 authored and salkinium committed Jul 10, 2024
1 parent 6a6802a commit 23f64ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/modm_tools/openocd.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def stop(self):
os.kill(self.process.pid, signal.CTRL_BREAK_EVENT)
else:
os.killpg(os.getpgid(self.process.pid), signal.SIGTERM)
os.waitpid(os.getpgid(self.process.pid), 0)
os.waitpid(os.getpgid(self.process.pid), 0)
self.process = None


Expand Down

0 comments on commit 23f64ca

Please sign in to comment.