Skip to content

Commit

Permalink
black lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sdfordham committed Dec 16, 2023
1 parent 6a91d11 commit 5f3754f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pysyncon/dataprep.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,9 @@ def __str__(self) -> str:
)

if self.special_predictors:
str_special_pred = ''
str_special_pred = ""
for predictor, time_range, op in self.special_predictors:
rep = f" `{predictor}` over `{time_range}` using `{op}`\n"
str_special_pred = str_special_pred + rep
str_rep = str_rep + f"Special predictors:\n" + str_special_pred
return str_rep
return str_rep

Check warning on line 291 in pysyncon/dataprep.py

View check run for this annotation

Codecov / codecov/patch

pysyncon/dataprep.py#L285-L291

Added lines #L285 - L291 were not covered by tests

0 comments on commit 5f3754f

Please sign in to comment.