linter error fixes

This commit is contained in:
matthewswspence 2024-09-12 12:55:12 -05:00
parent 519ca82ee3
commit 529178cd84
No known key found for this signature in database
GPG key ID: FB458202A7852BA4

View file

@ -12,7 +12,7 @@ class Cert:
variable but Python's ssl library requires a file.
"""
def __init__(self, data = settings.SECRET_REGISTRY_CERT) -> None: # type: ignore
def __init__(self, data=settings.SECRET_REGISTRY_CERT) -> None: # type: ignore
self.filename = self._write(data)
def __del__(self):