-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: migration to v9 api version (#303)
Co-authored-by: Ola Herrdahl <olaherrdahl@users.noreply.github.com> Co-authored-by: abk16 <and.theunnamed@gmail.com>
- Loading branch information
1 parent
6f22556
commit b9aff61
Showing
19 changed files
with
416 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
setuptools==69.0.3 | ||
pendulum==3.0.0 | ||
requests>=2.23.0 | ||
click==8.1.3 | ||
inquirer==2.9.1 | ||
click==8.1.7 | ||
inquirer==3.2.4 | ||
prettytable==3.6.0 | ||
validate_email==1.3 | ||
click-completion==0.5.2 | ||
pbr==5.8.0 | ||
pbr==6.0.0 | ||
notify-py==0.3.42 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,4 @@ version = 2.0.0 | |
|
||
[options] | ||
tz = utc | ||
default_wid = 3057440 | ||
|
||
default_wid = 8379305 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ version = 2.0.0 | |
|
||
[options] | ||
tz = utc | ||
default_wid = 2609276 | ||
default_wid = 8379305 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,13 @@ | ||
from toggl.api.models import Client, Workspace, Project, User, WorkspaceUser, ProjectUser, TimeEntry, Task, Tag | ||
from toggl.api.models import ( | ||
Client, | ||
Workspace, | ||
Project, | ||
User, | ||
WorkspaceUser, | ||
ProjectUser, | ||
TimeEntry, | ||
Task, | ||
Tag, | ||
InvitationResult, | ||
Organization, | ||
) |
Oops, something went wrong.