Skip to content

Commit

Permalink
screws_tilt_adjust: initialize status result as a dictionary (#569)
Browse files Browse the repository at this point in the history
Signed-off-by: Pedro Lamas <[email protected]>
Co-authored-by: Pedro Lamas <[email protected]>
  • Loading branch information
rogerlz and pedrolamas authored Feb 3, 2025
1 parent d9f2ac7 commit c6d1caa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion klippy/extras/screws_tilt_adjust.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def __init__(self, config):
self.config = config
self.printer = config.get_printer()
self.screws = []
self.results = []
self.results = {}
self.max_diff = None
self.max_diff_error = False
# Read config
Expand Down

0 comments on commit c6d1caa

Please sign in to comment.