mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-10 00:07:54 -06:00
klippy: No need to define __str__ and __init__ methods on exception classes
The base Exception class already defines these methods. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
7835f50722
commit
f547cab710
3 changed files with 8 additions and 17 deletions
|
@ -6,11 +6,8 @@
|
|||
import sys, zlib, logging, time, math
|
||||
import serialhdl, pins, chelper
|
||||
|
||||
class MCUError(Exception):
|
||||
def __init__(self, msg="MCU Error"):
|
||||
self._msg = msg
|
||||
def __str__(self):
|
||||
return self._msg
|
||||
class error(Exception):
|
||||
pass
|
||||
|
||||
def parse_pin_extras(pin, can_pullup=False):
|
||||
pullup = invert = 0
|
||||
|
@ -167,9 +164,9 @@ class MCU_endstop:
|
|||
# Timeout - disable endstop checking
|
||||
msg = self._home_cmd.encode(self._oid, 0, 0, 0)
|
||||
self._mcu.send(msg, reqclock=0, cq=self._cmd_queue)
|
||||
raise MCUError("Timeout during endstop homing")
|
||||
raise error("Timeout during endstop homing")
|
||||
if self._mcu.is_shutdown:
|
||||
raise MCUError("MCU is shutdown")
|
||||
raise error("MCU is shutdown")
|
||||
last_clock = self._mcu.get_last_clock()
|
||||
if last_clock >= self._next_query_clock:
|
||||
self._next_query_clock = last_clock + self._retry_query_ticks
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue