Skip to content

Commit

Permalink
ClientContext
Browse files Browse the repository at this point in the history
  • Loading branch information
kellerza committed Oct 5, 2023
1 parent ad4afa8 commit 03019ec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions office365/entity_collection.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
from typing import TypeVar
from typing import TYPE_CHECKING, TypeVar, Any

from office365.graph_client import GraphClient
from office365.runtime.client_object_collection import ClientObjectCollection
from office365.runtime.compat import is_string_type
from office365.runtime.paths.item import ItemPath
from office365.runtime.paths.resource_path import ResourcePath
from office365.runtime.queries.create_entity import CreateEntityQuery

if TYPE_CHECKING:
from office365.graph_client import GraphClient

T = TypeVar("T")


Expand Down

0 comments on commit 03019ec

Please sign in to comment.