@@ -130,12 +130,10 @@ def _buildPostList(self):
130
130
exportObjectsWith() for final posting."""
131
131
132
132
def __fixtureSetup (order , fixture , job ):
133
- """Convert a Fixure setting to _TempObject instance with a G0 move to a
133
+ """Convert a Fixture setting to _TempObject instance with a G0 move to a
134
134
safe height every time the fixture coordinate system change. Skip
135
135
the move for first fixture, to avoid moving before tool and tool
136
- height compensation is enabled.
137
-
138
- """
136
+ height compensation is enabled."""
139
137
140
138
fobj = _TempObject ()
141
139
c1 = Path .Command (fixture )
@@ -292,7 +290,7 @@ def __init__(self, job, script_path, *args, **kwargs):
292
290
self .load_script ()
293
291
294
292
def load_script (self ):
295
- # Dynamically load the script as a module
293
+ """ Dynamically load the script as a module."""
296
294
try :
297
295
spec = importlib .util .spec_from_file_location ("script_module" , self .script_path )
298
296
self .script_module = importlib .util .module_from_spec (spec )
@@ -309,7 +307,7 @@ def load_script(self):
309
307
self ._tooltipargs = getattr (self .script_module , "TOOLTIP_ARGS" , [])
310
308
311
309
def export (self ):
312
- # Dynamically reload the module for the export to ensure up-to-date usage
310
+ """ Dynamically reload the module for the export to ensure up-to-date usage."""
313
311
314
312
postables = self ._buildPostList ()
315
313
Path .Log .debug (f"postables count: { len (postables )} " )
0 commit comments