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 committed May 31, 2024
1 parent f721755 commit 19418bb
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 19418bb

Please sign in to comment.