removed unused config variable

This commit is contained in:
2019-10-04 11:13:19 +02:00
parent 69bac0b97b
commit 3f96734d84
2 changed files with 0 additions and 3 deletions

View File

@@ -2,7 +2,6 @@ loglevel: DEBUG
thermalzones:
- name: GPU+SYSTEM
hwmon: amdgpu
source: amdgpu/temp1_input
factor: 1000
fan:
@@ -14,7 +13,6 @@ thermalzones:
i: 1
d: 1.5
- name: CPU
hwmon: it8686
source: coretemp/temp1_input
factor: 1000
fan:

View File

@@ -20,7 +20,6 @@ class ThermalZone:
self.factor = 1 / config["factor"]
self.name = config["name"]
self.target = config["target"]
self.hwname = config["hwmon"]
self.hwmap = hwmon_map
self.alias_replace = re.compile('|'.join(self.hwmap.keys()))
self.setup_pwm()