mirror of
https://github.com/gogcom/galaxy-integrations-python-api.git
synced 2025-12-30 10:28:17 -05:00
7 lines
227 B
Python
7 lines
227 B
Python
from unittest.mock import MagicMock
|
|
|
|
class AsyncMock(MagicMock):
|
|
async def __call__(self, *args, **kwargs):
|
|
# pylint: disable=useless-super-delegation
|
|
return super(AsyncMock, self).__call__(*args, **kwargs)
|