Skip to content

Commit

Permalink
error in coonfig wtap for dely variabale
Browse files Browse the repository at this point in the history
removed min vauel won't process in config wrapper
  • Loading branch information
MG-longshot committed Nov 28, 2024
1 parent ae23002 commit 11fdd86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extras/AFC_prep.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self, config):
self.gcode = self.printer.lookup_object('gcode')
self.gcode.register_command('PREP', self.PREP, desc=None)
self.enable = config.getboolean("enable", False)
self.delay = config.get('delay_time', .1, minval=0)
self.delay = config.get('delay_time', .1)

# Flag to set once resume rename as occured for the first time
self.rename_occured = False
Expand Down

0 comments on commit 11fdd86

Please sign in to comment.