- removed jens from credentials

- try except for whole app loop
This commit is contained in:
Jens
2024-11-19 11:54:09 +01:00
parent 16bf180c70
commit cd300e9f2f
2 changed files with 6 additions and 7 deletions
-6
View File
@@ -4,11 +4,5 @@ users = [
'password': 'Arielle2024!', 'password': 'Arielle2024!',
'email': 'alex.thoni@gmx.de', 'email': 'alex.thoni@gmx.de',
'vin': 'WVWZZZE1ZMP010760' 'vin': 'WVWZZZE1ZMP010760'
},
{
'username': 'jens',
'password': '2SaveMyCar',
'email': 'jens.ahrensfeld@gmx.de',
'vin': 'WVWZZZE1ZMP010760'
} }
] ]
+6 -1
View File
@@ -130,4 +130,9 @@ if __name__ == '__main__':
wc_list.append(WeCollector(user)) wc_list.append(WeCollector(user))
print(wc_list) print(wc_list)
request_loop(wc_list) try:
request_loop(wc_list)
except Exception as e:
print(f"Terminated with Exception {e}")
print(f"Terminated Normally")