Skip to content

Instantly share code, notes, and snippets.

@amiryousefi
Created January 31, 2020 18:37
Show Gist options
  • Save amiryousefi/690733ab265fe25dada8558e33e53904 to your computer and use it in GitHub Desktop.
Save amiryousefi/690733ab265fe25dada8558e33e53904 to your computer and use it in GitHub Desktop.
class TodoistBot:
class Flags:
new_project = False
new_task = False
select_project_for_task = False
def __init__(self, flag=False):
self.new_project = flag
self.new_task = flag
self.select_project_for_task = flag
flags = Flags()
# All other functions
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment