Skip to content

Commit

Permalink
fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Sep 9, 2024
1 parent 8d7fbff commit 7140fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion piccolo_api/encryption/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
logger = logging.getLogger(__name__)


def get_fernet_class() -> Fernet: # type: ignore
def get_fernet_class() -> t.Type[Fernet]: # type: ignore
try:
from cryptography.fernet import Fernet
except ImportError as e:
Expand Down

0 comments on commit 7140fd2

Please sign in to comment.