Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Subash Pradhan committed Nov 4, 2024
1 parent c2262e6 commit d1c8619
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
nylas-python Changelog
======================

Unreleased
--------------
* Add support for Scheduler APIs

v6.4.0
----------------
* Add support for from field for sending messages
Expand Down
4 changes: 2 additions & 2 deletions nylas/models/scheduler.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from dataclasses import dataclass, field
from typing import Dict, Any, Optional, List
from dataclasses import dataclass
from typing import Dict, Optional, List

from dataclasses_json import dataclass_json
from typing_extensions import TypedDict, NotRequired, Literal
Expand Down
6 changes: 3 additions & 3 deletions nylas/resources/scheduler.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from configurations import Configurations
from bookings import Bookings
from sessions import Sessions
from nylas.resources.configurations import Configurations
from nylas.resources.bookings import Bookings
from nylas.resources.sessions import Sessions

class Scheduler:
"""
Expand Down

0 comments on commit d1c8619

Please sign in to comment.