Fix config_modem imports

This commit is contained in:
djGrrr
2023-03-05 22:30:59 -03:30
parent 6eee6066e0
commit de05d09630
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
#!/usr/bin/python3
import asyncio
from sagemcom_api.client import SagemcomClient
from modem_config import *
from config_modem import *
async def main() -> None:
async with await modem() as client:
+1 -1
View File
@@ -1,7 +1,7 @@
#!/usr/bin/python3
import asyncio
from sagemcom_api.client import SagemcomClient
from modem_config import *
from config_modem import *
async def main() -> None:
async with await modem() as client:
+1 -1
View File
@@ -1,7 +1,7 @@
#!/usr/bin/python3
import asyncio
from sagemcom_api.client import SagemcomClient
from modem_config import *
from config_modem import *
async def main() -> None:
async with await modem() as client: