diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-08-04 16:00:23 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-08-06 14:21:08 -0400 |
commit | 4346d37c0662d7d0cae08968e0a5737afcd49c52 (patch) | |
tree | 463cc84e1e014152d518588a0fe339c29e9f74e0 /klippy/klippy.py | |
parent | 8c8b9b18120ddba92551f8f07e2407f9d190c9db (diff) | |
download | kutter-4346d37c0662d7d0cae08968e0a5737afcd49c52.tar.gz kutter-4346d37c0662d7d0cae08968e0a5737afcd49c52.tar.xz kutter-4346d37c0662d7d0cae08968e0a5737afcd49c52.zip |
webhooks: Introduce add_early_printer_objects()
Create the initial gcode class via new module level
add_early_printer_objects() function.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/klippy.py')
-rw-r--r-- | klippy/klippy.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py index 678c0980..6a24d4a3 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -58,8 +58,9 @@ class Printer: self.run_result = None self.event_handlers = {} self.objects = collections.OrderedDict() - self.objects['webhooks'] = webhooks.WebHooks(self) - gcode.add_early_printer_objects(self) + # Init printer components that must be setup prior to config + for m in [webhooks, gcode]: + m.add_early_printer_objects(self) def get_start_args(self): return self.start_args def get_reactor(self): |