Skip to content

Commit

Permalink
Fix spinner interfering with url prompt (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiblee authored Oct 13, 2022
1 parent a869c8e commit 0e47c3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion todocli/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.0"
__version__ = "0.7.1"
5 changes: 4 additions & 1 deletion todocli/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from prompt_toolkit.layout.layout import Layout
from prompt_toolkit.widgets import TextArea

import todocli.graphapi.wrapper as wrapper
from todocli.graphapi import wrapper, oauth
from todocli.utils import update_checker


Expand All @@ -42,6 +42,9 @@ def __init__(self):
# Check for updates
update_checker.check()

# Check if user is authenticated
oauth.get_token()

# Tracking where focus is
self.list_focus_idx = 0
self.task_focus_idx = 0
Expand Down

0 comments on commit 0e47c3d

Please sign in to comment.