Skip to content

Commit

Permalink
Make the dataclasses semi-immutable - no change for the values
Browse files Browse the repository at this point in the history
  • Loading branch information
mgcam committed Mar 5, 2024
1 parent 9d1c7ce commit bcbabcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lang_qc/models/pacbio/well.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit bcbabcd

Please sign in to comment.