mirror of
https://github.com/gogcom/galaxy-integrations-python-api.git
synced 2026-01-31 18:11:27 -05:00
6 lines
176 B
Python
6 lines
176 B
Python
from unittest.mock import MagicMock
|
|
|
|
class AsyncMock(MagicMock):
|
|
async def __call__(self, *args, **kwargs):
|
|
return super(AsyncMock, self).__call__(*args, **kwargs)
|