mirror of https://github.com/Desuuuu/klipper.git
klippy: Remove unneeded loop in run() method
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
32b763efb1
commit
d1da6100a6
|
@ -260,7 +260,6 @@ class Printer:
|
||||||
monotime = self.reactor.monotonic()
|
monotime = self.reactor.monotonic()
|
||||||
logging.info("Start printer at %s (%.1f %.1f)",
|
logging.info("Start printer at %s (%.1f %.1f)",
|
||||||
time.asctime(time.localtime(systime)), systime, monotime)
|
time.asctime(time.localtime(systime)), systime, monotime)
|
||||||
while 1:
|
|
||||||
# Enter main reactor loop
|
# Enter main reactor loop
|
||||||
try:
|
try:
|
||||||
self.reactor.run()
|
self.reactor.run()
|
||||||
|
|
Loading…
Reference in New Issue