diff --git a/lang_qc/models/pacbio/well.py b/lang_qc/models/pacbio/well.py index efd5abc..1568842 100644 --- a/lang_qc/models/pacbio/well.py +++ b/lang_qc/models/pacbio/well.py @@ -33,7 +33,7 @@ from lang_qc.models.qc_state import QcState -@dataclass +@dataclass(kw_only=True, frozen=True) class PacBioWell: """ A response model for a single PacBio well on a particular PacBio run. @@ -126,7 +126,7 @@ class PacBioPagedWells(PagedResponse, extra="forbid"): ) -@dataclass +@dataclass(kw_only=True, frozen=True) class PacBioWellFull(PacBioWell): """ A response model for a single PacBio well on a particular PacBio run.