Consistent black formatting of all Path python files

This commit is contained in:
Markus Lampert
2022-02-28 21:06:16 -08:00
parent 8583894284
commit 934b0aaa07
93 changed files with 5216 additions and 3118 deletions

View File

@@ -68,13 +68,15 @@ FeatureDiameters = 0x4000 # Turning Diameters
FeatureBaseGeometry = FeatureBaseVertexes | FeatureBaseFaces | FeatureBaseEdges
class PathNoTCException(Exception):
'''PathNoTCException is raised when no TC was selected or matches the input
"""PathNoTCException is raised when no TC was selected or matches the input
criteria. This can happen intentionally by the user when they cancel the TC
selection dialog.'''
selection dialog."""
def __init__(self):
super().__init__('No Tool Controller found')
super().__init__("No Tool Controller found")
class ObjectOp(object):
"""