Skip to content

Commit

Permalink
💚 Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Mar 14, 2023
1 parent f74aff0 commit e5b7d5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lnschema_core/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class DObject(SQLModel, table=True): # type: ignore
# We need the fully module-qualified path below, as there might be more
# schema modules with an ORM called "Run"
source: "lnschema_core._core.Run" = Relationship(back_populates="outputs") # type: ignore # noqa
"""Link to :class:`~lamindb.schema.Run` that generated the `dobject`."""
"""Link to :class:`~lamindb.Run` that generated the `dobject`."""
source_id: str = Field(foreign_key="core.run.id", index=True)
"""The source run id."""
storage_id: str = Field(foreign_key="core.storage.id", index=True)
Expand All @@ -210,7 +210,7 @@ class DObject(SQLModel, table=True): # type: ignore
back_populates="dobjects",
sa_relationship_kwargs=dict(secondary=DObjectFeatures.__table__),
)
"""Link to feature sets."""
"""Link to feature sets :class:`~lamindb.Features`"""
dfolders: List[DFolder] = Relationship(
back_populates="dobjects",
sa_relationship_kwargs=dict(secondary=DFolderDObject.__table__),
Expand Down

0 comments on commit e5b7d5d

Please sign in to comment.