Unverified Commit 8f99a451 authored by John Davis's avatar John Davis Committed by Nicola Soranzo
Browse files

Add note re:unused-ignore can be removed after drop of 3.8

parent 6bb301b7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10165,7 +10165,7 @@ class PSAAssociation(Base, AssociationMixin, RepresentById):
    __tablename__ = "psa_association"

    id: Mapped[int] = mapped_column(primary_key=True)
    server_url: Mapped[Optional[str]] = mapped_column(VARCHAR(255))  # type:ignore[assignment, unused-ignore]
    server_url: Mapped[Optional[str]] = mapped_column(VARCHAR(255))  # type: ignore[assignment, unused-ignore]  # needed for social-auth-core Mixin class attributes. unused-ignore needed for older social-auth-core on Python 3.8
    handle: Mapped[Optional[str]] = mapped_column(VARCHAR(255))  # type:ignore[assignment, unused-ignore]
    secret: Mapped[Optional[str]] = mapped_column(VARCHAR(255))  # type:ignore[assignment, unused-ignore]
    issued: Mapped[Optional[int]]  # type:ignore[assignment, unused-ignore]