Skip to content

Commit 50b245c

Browse files
committed
add type annotations to page
1 parent 2f33739 commit 50b245c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/msgraph_core/tasks/page_iterator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ async def fetch_next_page(self) -> dict:
201201
request_info.headers = self.headers
202202
if self.request_options:
203203
request_info.add_request_options(*self.request_options)
204-
parsable_factory = PageResult(self.object_type)
204+
parsable_factory: PageResult[Any] = PageResult(self.object_type)
205205
error_map: Dict[str, int] = {}
206206
response = await self.request_adapter.send_async(request_info, parsable_factory, error_map)
207207

0 commit comments

Comments
 (0)