Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,7 @@ def unhandled_input(self, key):
if self._loading or self.workspaces_line is None:
return

selected_workspace = int(key)
# Workspace is selected
if selected_workspace - 1 == self.workspaces_line.selected:
return
Expand Down Expand Up @@ -924,6 +925,7 @@ def ask_for_token(json_config):
config_file.write(json.dumps(token_config, indent=False))
json_config.update(token_config)


if __name__ == '__main__':
json_config = {}
with open('./config.json', 'r') as config_file:
Expand Down