mirror of
https://github.com/onyx-and-iris/xair-api-python.git
synced 2026-04-18 05:23:32 +00:00
remove unnecessary assignment
This commit is contained in:
@@ -525,8 +525,7 @@ class EQ:
|
||||
|
||||
@property
|
||||
def quality(self) -> float:
|
||||
raw_value = self.getter('q')[0]
|
||||
retval = util.log_get(0.3, 10, 1.0 - raw_value)
|
||||
retval = util.log_get(0.3, 10, 1.0 - self.getter('q')[0])
|
||||
return round(retval, 1)
|
||||
|
||||
@quality.setter
|
||||
|
||||
Reference in New Issue
Block a user