We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ea302a commit 9aa6d8fCopy full SHA for 9aa6d8f
office365/entity_collection.py
@@ -5,10 +5,11 @@
5
from office365.runtime.paths.item import ItemPath
6
from office365.runtime.queries.create_entity import CreateEntityQuery
7
from office365.runtime.paths.resource_path import ResourcePath
8
-from office365.graph_client import GraphClient
+from office365.sharepoint.client_context import ClientContext
9
10
T = TypeVar("T")
11
12
+
13
class EntityCollection(ClientObjectCollection[T]):
14
"""A collection container which represents a named collections of entities"""
15
@@ -38,5 +39,6 @@ def add(self, **kwargs):
38
39
40
@property
41
def context(self):
- # type: () -> GraphClient
42
+ # type: () -> ClientContext
43
+ # Should this be ClientRuntimeContext or GraphClient?
44
return self._context
0 commit comments