Skip to content

Commit

Permalink
black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kiblee committed Nov 9, 2020
1 parent 3c577c0 commit 07474fe
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@
url="https://github.com/kiblee/tod0",
license="LICENSE",
description="A Terminal Client for Microsoft To-Do.",
install_requires=["prompt-toolkit", "pyyaml", "requests", "requests_oauthlib",],
install_requires=[
"prompt-toolkit",
"pyyaml",
"requests",
"requests_oauthlib",
],
include_package_data=True,
entry_points="""
[console_scripts]
Expand Down
6 changes: 5 additions & 1 deletion todocli/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,11 @@ def load_folders():

right_window = HSplit([Window()])
body = VSplit(
[left_window, Window(width=1, char="|", style="class:line"), right_window,]
[
left_window,
Window(width=1, char="|", style="class:line"),
right_window,
]
)


Expand Down

0 comments on commit 07474fe

Please sign in to comment.