mirror of https://github.com/aristocratos/bpytop
Fast load_config
parent
09e639cc04
commit
c1d873abaf
10
bpytop.py
10
bpytop.py
|
@ -462,10 +462,12 @@ class Config:
|
|||
line = line.strip()
|
||||
if line.startswith("#? Config"):
|
||||
new_config["version"] = line[line.find("v. ") + 3:]
|
||||
for key in self.keys:
|
||||
if line.startswith(key):
|
||||
line = line.replace(key + "=", "")
|
||||
if line.startswith('"'):
|
||||
continue
|
||||
if not '=' in line:
|
||||
continue
|
||||
key, line = line.split('=', maxsplit=1)
|
||||
if not key in self.keys:
|
||||
continue
|
||||
line = line.strip('"')
|
||||
if type(getattr(self, key)) == int:
|
||||
try:
|
||||
|
|
Loading…
Reference in New Issue