diff --git a/klippy/extras/axis_twist_compensation.py b/klippy/extras/axis_twist_compensation.py index 3ab27f00..17437a97 100644 --- a/klippy/extras/axis_twist_compensation.py +++ b/klippy/extras/axis_twist_compensation.py @@ -45,21 +45,6 @@ class AxisTwistCompensation: self.zy_compensations = config.getlists('zy_compensations', default=[], parser=float) - # Validate single compensation - valid_conditions = sum( - [ - bool(self.z_compensations), - bool(self.zy_compensations) - ] - ) - - if valid_conditions > 1: - raise config.error( - """AXIS_TWIST_COMPENSATION: Only one type of compensation - can be present at a time: - either z_compensations or zy_compensations.""" - ) - # setup calibrater self.calibrater = Calibrater(self, config) # register events