Skip to content

Commit

Permalink
remove type ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
reuvenstr committed Nov 26, 2024
1 parent a59debe commit 28b7718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jwthenticator/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class KeyInfo(Base):
__tablename__ = "keys"
id = mapped_column(Integer, primary_key=True, autoincrement=True)
key_hash = mapped_column(String(256), unique=True)
identifier = mapped_column(UUIDType(binary=False), nullable=False) # type: ignore
identifier = mapped_column(UUIDType(binary=False), nullable=False)


class RefreshTokenInfo(Base):
Expand Down

0 comments on commit 28b7718

Please sign in to comment.