refactor: fix some things shown by newer VS syntax checker, mostly type related

This commit is contained in:
Dobin Rutishauser
2025-01-25 18:07:24 +01:00
parent 1d3324686f
commit 919aca0d70
11 changed files with 73 additions and 66 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ class Config(object):
def getConfig(self):
return self.data
def get(self, value):
def get(self, value) -> str:
return self.data.get(value, "")
config = Config()