Consistent black formatting of all Path python files

This commit is contained in:
Markus Lampert
2022-02-28 21:06:16 -08:00
parent 122fd49b37
commit 37095fbf78
93 changed files with 5216 additions and 3118 deletions

View File

@@ -51,13 +51,15 @@ else:
UserInput = None
class PathNoTCExistsException(Exception):
'''PathNoECExistsException is raised when no TC exists at all, or when all
"""PathNoECExistsException is raised when no TC exists at all, or when all
existing TCs are rejected by a given op.
This is typically an error because avery op requires a TC. '''
This is typically an error because avery op requires a TC."""
def __init__(self):
super().__init__('No Tool Controllers exist')
super().__init__("No Tool Controllers exist")
def waiting_effects(function):
def new_function(*args, **kwargs):