Skip to content

Commit

Permalink
PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
james7132 committed Jul 29, 2017
1 parent 0796d12 commit abbc027
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/config.py
Expand Up @@ -80,7 +80,6 @@ def reload_config():
# Using OrderedDict to preserve JSON ordering of dictionaries
config_json = json.load(config_file, object_pairs_hook=OrderedDict)


old_url = None
common.GLOBAL_CONTEXT['project'] = common.sanitize_url(
config_json['project'])
Expand Down
3 changes: 2 additions & 1 deletion src/ui.py
Expand Up @@ -415,7 +415,8 @@ async def game_update(self):
self.launch_game_btn.hide()
self.progress_bar.show()
self.branch_box.setEnabled(False)
await get_loop().run_in_executor(self.executor, self.branch.update_game)
await get_loop().run_in_executor(self.executor,
self.branch.update_game)
self.set_idle_state()

def set_idle_state(self):
Expand Down

0 comments on commit abbc027

Please sign in to comment.