1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-03-12 04:58:34 +03:00

some minor corrections

This commit is contained in:
Adolfo Gómez García 2023-03-25 13:50:27 +01:00
parent 62e27da7da
commit 2ce2817eac
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23
2 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,7 @@ class ServicePoolPublication(UUIDModel):
publicationManager().cancel(self)
@staticmethod
def beforeDelete(sender, **kwargs):
def beforeDelete(sender, **kwargs) -> None:
"""
Used to invoke the Service class "Destroy" before deleting it from database.

View File

@ -35,7 +35,7 @@ import typing
from django.db import models
from django.db.models import Count, Q, signals
from uds.core import auths
from uds.core import auths, mfas
from uds.core.util import log, storage
from .authenticator import Authenticator