Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
backend: pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
OxygenCobalt committed Mar 24, 2024
1 parent 98fb40a commit 2075e18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/model/van_location.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class VanLocation(Base):
primary_key=True, autoincrement=True, nullable=False
)
created_at: Mapped[datetime] = mapped_column(
TZDateTime, nullable=False, server_default=func.now()
TZDateTime, nullable=False, server_default=func.now() # pylint: disable=all
)
session_id: Mapped[int] = mapped_column(
ForeignKey("van_tracker_session.id"), nullable=False
Expand Down

0 comments on commit 2075e18

Please sign in to comment.