1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-26 10:03:50 +03:00

Small type check fix

This commit is contained in:
Adolfo Gómez García 2023-04-02 04:32:53 +02:00
parent 6cbb497902
commit c11ea77f22
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23

View File

@ -62,7 +62,7 @@ ACCOUNT_TYPE = 16
ACTOR_TOKEN_TYPE = 17
TUNNEL_TOKEN_TYPE = 18
objTypeDict: typing.Dict[typing.Type, int] = {
objTypeDict: typing.Dict[typing.Type['Model'], int] = {
models.Provider: PROVIDER_TYPE,
models.Service: SERVICE_TYPE,
models.OSManager: OSMANAGER_TYPE,