diff --git a/ourprojects/models.py b/ourprojects/models.py index 465a1c0..f9bbc51 100644 --- a/ourprojects/models.py +++ b/ourprojects/models.py @@ -51,7 +51,7 @@ class Meta(Record.Meta, TracksRun.Meta, TracksUpdates.Meta): email: str | None = EmailField(null=True, default=None) """Email of the person.""" external: bool = BooleanField(default=True, db_index=True) - """Whether the person is external to the organization or not.""" + """Whether the person is external to the organization.""" class Project(Record, CanCurate, TracksRun, TracksUpdates, ValidateFields): @@ -144,7 +144,7 @@ class Meta(Record.Meta, TracksRun.Meta, TracksUpdates.Meta): preprint: bool = BooleanField(default=False, db_index=True) """Whether the reference is from a preprint.""" public: bool = BooleanField(default=True, db_index=True) - """Whether the reference is public or not.""" + """Whether the reference is public.""" journal: str | None = TextField(null=True) """Name of the journal.""" description: str | None = TextField(null=True)