Skip to content

Commit

Permalink
Drop key argument
Browse files Browse the repository at this point in the history
Did not want to do that actually
  • Loading branch information
mvdbeek authored May 31, 2024
1 parent 0b6d925 commit 4823139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10085,7 +10085,7 @@ class Page(Base, HasTags, Dictifiable, RepresentById, UsesCreateAndUpdateTime):
)
title = Column(TEXT)
deleted = Column(Boolean, index=True, default=False)
importable = Column(Boolean, index=True, default=False, key="_importable")
importable = Column(Boolean, index=True, default=False)
slug = Column(TEXT)
published = Column(Boolean, index=True, default=False)
user = relationship("User")
Expand Down

0 comments on commit 4823139

Please sign in to comment.