1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-03-20 06:50:23 +03:00

chore: Import types module in provider.py

This commit is contained in:
Adolfo Gómez García 2024-07-05 17:39:30 +02:00
parent 0b7adc8b19
commit 2c8ef0cbe9
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23

View File

@ -33,6 +33,7 @@ Author: Adolfo Gómez, dkmaster at dkmon dot com
import logging
import typing
from uds.core import types
from uds.core import module, environment, consts
from uds.core.ui import gui
@ -40,7 +41,6 @@ from uds.core.ui import gui
if typing.TYPE_CHECKING:
from .service import Service
from uds import models
from uds.core import types
logger = logging.getLogger(__name__)