Skip to content

Commit

Permalink
🎨 Rename CanValidate to CanCurate
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnyosun committed Nov 15, 2024
1 parent 1bf2dcd commit ecfe7d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion findrefs/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class Migration(migrations.Migration):
options={
"abstract": False,
},
bases=(lnschema_core.models.CanValidate, models.Model),
bases=(lnschema_core.models.CanCurate, models.Model),
),
migrations.AddField(
model_name="artifactreference",
Expand Down
4 changes: 2 additions & 2 deletions findrefs/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
)
from lnschema_core.models import (
Artifact,
CanValidate,
CanCurate,
Feature,
LinkORM,
Record,
Expand All @@ -23,7 +23,7 @@
)


class Reference(Record, CanValidate, TracksRun, TracksUpdates, ValidateFields):
class Reference(Record, CanCurate, TracksRun, TracksUpdates, ValidateFields):
"""References such as a publication or document, with unique identifiers and metadata.
Example:
Expand Down

0 comments on commit ecfe7d6

Please sign in to comment.