mirror of
https://github.com/gogcom/galaxy-integrations-python-api.git
synced 2026-06-11 15:24:40 -04: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)
|