Commit 8afc95dd authored by Alexander Schrode's avatar Alexander Schrode Committed by oroulet

Fix py 3.7

parent 333a9b2f
...@@ -6,7 +6,7 @@ from asyncio import Future, sleep, wait_for, TimeoutError ...@@ -6,7 +6,7 @@ from asyncio import Future, sleep, wait_for, TimeoutError
from datetime import datetime, timedelta from datetime import datetime, timedelta
try: try:
from unittest.mock import AsyncMock from unittest.mock import AsyncMock
except ModuleNotFoundError: except ImportError:
from asynctest import CoroutineMock as AsyncMock from asynctest import CoroutineMock as AsyncMock
import asyncua import asyncua
from asyncua import ua, Client from asyncua import ua, Client
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment