-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor changes after pre release review (#71)
* Update dependencies in CI and pre-commit * Improve type annotations for List fields * Change irrelevant schema field types * Add imports to package __init__ to ease module importing
- Loading branch information
Showing
9 changed files
with
152 additions
and
111 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
__version__ = "0.3.0" | ||
|
||
from .auth import BasicAuth, TokenAuth | ||
from .entities.report_time_entry import ReportTimeEntry | ||
from .entities.user import CurrentUser | ||
from .entities.workspace import Workspace | ||
from .exceptions import BadRequest, TogglException | ||
from .schemas.current_user import MeResponse | ||
from .schemas.project import ProjectQueryParams, ProjectResponse | ||
from .schemas.report_time_entry import ( | ||
SearchReportTimeEntriesRequest, | ||
SearchReportTimeEntriesResponse, | ||
) | ||
from .schemas.time_entry import MeTimeEntryResponse, TimeEntryCreateRequest, TimeEntryRequest | ||
from .schemas.workspace import WorkspaceResponse | ||
|
||
|
||
__all__ = ( | ||
"BasicAuth", | ||
"TokenAuth", | ||
"CurrentUser", | ||
"Workspace", | ||
"ReportTimeEntry", | ||
"SearchReportTimeEntriesResponse", | ||
"SearchReportTimeEntriesRequest", | ||
"WorkspaceResponse", | ||
"ProjectResponse", | ||
"ProjectQueryParams", | ||
"MeTimeEntryResponse", | ||
"TimeEntryRequest", | ||
"TimeEntryCreateRequest", | ||
"MeResponse", | ||
"BadRequest", | ||
"TogglException", | ||
) |
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