remove unnecessary assignment

This commit is contained in:
onyx-and-iris 2026-02-02 04:18:23 +00:00
parent deb298537f
commit ce4fccdc85

View File

@ -525,8 +525,7 @@ class EQ:
@property @property
def quality(self) -> float: def quality(self) -> float:
raw_value = self.getter('q')[0] retval = util.log_get(0.3, 10, 1.0 - self.getter('q')[0])
retval = util.log_get(0.3, 10, 1.0 - raw_value)
return round(retval, 1) return round(retval, 1)
@quality.setter @quality.setter