added fix for vscode complaining about alias && merged

This commit is contained in:
Adolfo Gómez García 2021-04-08 17:47:03 +02:00
commit f595219405
3 changed files with 6 additions and 5 deletions

View File

@ -34,6 +34,7 @@ DATABASES = {
}
ALLOWED_HOSTS = '*'
DEFAULT_AUTO_FIELD='django.db.models.AutoField'
# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.

View File

@ -94,7 +94,7 @@ class TicketStore(UUIDModel):
@staticmethod
def create(
data: typing.Any,
validatorFnc: typing.Optional[ValidatorType] = None,
validatorFnc: typing.Optional[ValidatorType] = None, # type: ignore
validity: int = DEFAULT_VALIDITY,
owner: typing.Optional[str] = None,
secure: bool = False,

File diff suppressed because one or more lines are too long