Skip to content

Commit

Permalink
Update test_effect.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sdaves authored Nov 16, 2023
1 parent 5f4fd4a commit a32a06e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/test_effect.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
from unittest import mock

import aiohttp
import asynctest
try:
import asynctest
except AttributeError as err:
asyncio.coroutine = lambda fn: lambda: fn()
import asynctest
import pytest
from hypothesis import assume, given, settings
from typing_extensions import Protocol
Expand Down

0 comments on commit a32a06e

Please sign in to comment.