Fixing black and pylint

This commit is contained in:
Devin Matte 2022-05-28 14:28:26 -04:00
parent d660549200
commit 62490d6858
6 changed files with 23 additions and 18 deletions

View file

@ -28,7 +28,7 @@ def get_vnc_targets():
if os.path.exists(app.config['WEBSOCKIFY_TARGET_FILE']):
target_file = open(app.config['WEBSOCKIFY_TARGET_FILE'])
for line in target_file:
target_dict = dict()
target_dict = {}
values = line.strip().split(':')
target_dict['token'] = values[0]
target_dict['port'] = values[2]