Skip to content

Commit

Permalink
🚨 Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-s-friedman committed Aug 28, 2024
1 parent 36a240c commit 4167bbe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dataservice/api/biospecimen/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ class Biospecimen(db.Model, Base):
volume_ul = db.Column(db.Float(),
doc='The volume of the aliquot')
amount = db.Column(db.Float(),
doc='The amount of the aliquot')
doc='The amount of the aliquot')
amount_units = db.Column(db.Text(),
doc='The units of the amount of the aliquot')
doc='The units of the amount of the aliquot')
shipment_date = db.Column(db.DateTime(),
doc='The date the aliquot was shipped')
uberon_id_anatomical_site = db.Column(db.Text(),
Expand Down
4 changes: 2 additions & 2 deletions dataservice/api/sample/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ class Sample(db.Model, Base):
doc='The volume of the sample'
)
amount = db.Column(db.Float(),
doc='The amount of the sample')
doc='The amount of the sample')
amount_units = db.Column(db.Text(),
doc='The units of the amount of the sample')
doc='The units of the amount of the sample')
method_of_sample_procurement = db.Column(
db.Text(),
doc='The method used to procure the sample used to extract '
Expand Down

0 comments on commit 4167bbe

Please sign in to comment.