Skip to content

Commit

Permalink
Edit docstring
Browse files Browse the repository at this point in the history
Scarvy committed Feb 10, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent befeaaa commit 6e62bc9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ticktick_to_sqlite/utils.py
Original file line number Diff line number Diff line change
@@ -25,15 +25,18 @@ def completed_tasks(username, password, auth_token, start_date, end_date=None):


def get_tags(usernmae, password, auth_token):
"""Get tags from TickTick."""
client = TickTickClient(usernmae, password, auth_token)
return client.state["tags"]


def get_projects(username, password, auth_token):
"""Get projects (aka "List") in TickTick."""
client = TickTickClient(username, password, auth_token)
return client.state["projects"]


def get_project_folders(username, password, auth_token):
"""Get project folders (aka "List Folders") from"""
client = TickTickClient(username, password, auth_token)
return client.state["project_folders"]

0 comments on commit 6e62bc9

Please sign in to comment.