##// END OF EJS Templates
remove unnecessary initial assignments in launchers...
Min RK -
Show More
@@ -114,8 +114,6 b' class BaseLauncher(LoggingConfigurable):'
114 super(BaseLauncher, self).__init__(work_dir=work_dir, config=config, **kwargs)
114 super(BaseLauncher, self).__init__(work_dir=work_dir, config=config, **kwargs)
115 self.state = 'before' # can be before, running, after
115 self.state = 'before' # can be before, running, after
116 self.stop_callbacks = []
116 self.stop_callbacks = []
117 self.start_data = None
118 self.stop_data = None
119
117
120 @property
118 @property
121 def args(self):
119 def args(self):
@@ -368,7 +366,6 b' class LocalEngineSetLauncher(LocalEngineLauncher):'
368 super(LocalEngineSetLauncher, self).__init__(
366 super(LocalEngineSetLauncher, self).__init__(
369 work_dir=work_dir, config=config, **kwargs
367 work_dir=work_dir, config=config, **kwargs
370 )
368 )
371 self.stop_data = {}
372
369
373 def start(self, n):
370 def start(self, n):
374 """Start n engines by profile or profile_dir."""
371 """Start n engines by profile or profile_dir."""
General Comments 0
You need to be logged in to leave comments. Login now