Skip to content

Commit 1812376

Browse files
change order of inheritance for AsyncLROPoller to make pylint happy for type hints (Azure#11743)
1 parent 5d04dfe commit 1812376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/core/azure-core/azure/core/polling/_async_poller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ async def async_poller(client, initial_response, deserialization_callback, polli
9595
return await poller
9696

9797

98-
class AsyncLROPoller(Awaitable, Generic[PollingReturnType]):
98+
class AsyncLROPoller(Generic[PollingReturnType], Awaitable):
9999
"""Async poller for long running operations.
100100
101101
:param client: A pipeline service client

0 commit comments

Comments
 (0)