Skip to content

Commit

Permalink
Fix linting after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavcs committed Mar 22, 2024
1 parent a65d9a1 commit 1b2b7ad
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/galaxy/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7844,7 +7844,9 @@ class WorkflowStep(Base, RepresentById):
uuid: Mapped[Optional[str]] = mapped_column(UUIDType)
label: Mapped[Optional[str]] = mapped_column(Unicode(255))
temp_input_connections = None
parent_comment_id: Mapped[Optional[int]] = mapped_column(Integer, ForeignKey("workflow_comment.id"), index=True, nullable=True)
parent_comment_id: Mapped[Optional[int]] = mapped_column(
Integer, ForeignKey("workflow_comment.id"), index=True, nullable=True
)

parent_comment = relationship(
"WorkflowComment",
Expand Down Expand Up @@ -8294,7 +8296,9 @@ class WorkflowComment(Base, RepresentById):
type: Mapped[Optional[str]] = mapped_column(String(16))
color: Mapped[Optional[str]] = mapped_column(String(16))
data: Mapped[Optional[bytes]] = mapped_column(JSONType)
parent_comment_id: Mapped[Optional[int]] = mapped_column(Integer, ForeignKey("workflow_comment.id"), index=True, nullable=True)
parent_comment_id: Mapped[Optional[int]] = mapped_column(
Integer, ForeignKey("workflow_comment.id"), index=True, nullable=True
)

workflow = relationship(
"Workflow",
Expand Down

0 comments on commit 1b2b7ad

Please sign in to comment.