Tests: pathlib used where appropriate

Also fixed various pylint errors and style issues.
This commit is contained in:
Andrei Zeliankou
2024-01-15 15:48:58 +00:00
parent e95a91cbfa
commit 5a8337933d
72 changed files with 306 additions and 256 deletions

View File

@@ -30,16 +30,16 @@ class Status:
for k in d1
if k in d2
}
else:
return d1 - d2
return d1 - d2
return find_diffs(Status.control.conf_get('/status'), Status._status)
def get(path='/'):
path = path.split('/')[1:]
path_lst = path.split('/')[1:]
diff = Status.diff()
for p in path:
diff = diff[p]
for part in path_lst:
diff = diff[part]
return diff