Skip to content

Commit

Permalink
Made requested changes in script.py
Browse files Browse the repository at this point in the history
  • Loading branch information
janish1999 committed Dec 13, 2019
1 parent 8628e5f commit 9c5d72e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pytodo/script.py
@@ -1,7 +1,7 @@
#!/usr/bin/python3

from argparser import create_parser
from modules import add_todo, get_all_todos, display_todos, set_todo_status, delete_by_index, clear, update_by_index, expire_todos, expire_overdue_todos,disable_quotes
from modules import add_todo, get_all_todos, display_todos, set_todo_status, delete_by_index, clear, update_by_index, expire_todos, expire_overdue_todos,quotes


def main():
Expand Down Expand Up @@ -34,8 +34,8 @@ def main():
clear()
if args["expire"] != None:
expire_overdue_todos(todos)
if args["disable_quotes"] != None:
disable_quotes(int(args["disable_quotes"][0]))
if args["quotes"] != None:
quotes(int(args["quotes"][0]))
display_todos()


Expand Down

0 comments on commit 9c5d72e

Please sign in to comment.