Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
a-mosquito committed May 31, 2023
1 parent aedd290 commit 98d9c8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion carwatch/scripts/prepare_study.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@
required=True,
prompt="Number of biomarker samples [during the day, WITHOUT evening sample]",
type=int,
help="The daily number of biomarker samples taken throughout the day from every participant. This number does not include the evening sample.",
help="The daily number of biomarker samples taken throughout the day from every participant. "
"This number does not include the evening sample.",
)
@click.option(
"--sample_prefix",
Expand Down
3 changes: 1 addition & 2 deletions carwatch/utils/study.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,5 +182,4 @@ def sample_indices(self):
"""
if self.has_evening_sample:
return list(range(0, self.num_samples + 1))
else:
return list(range(0, self.num_samples))
return list(range(0, self.num_samples))

0 comments on commit 98d9c8c

Please sign in to comment.