Skip to content

Commit 70efb39

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9c2186c commit 70efb39

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/bidspm/validate.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,9 @@ def validate(file: Path) -> int:
1919
BIDSStatsModel.parse_file(file)
2020
return 0
2121
except pydantic.error_wrappers.ValidationError as e:
22-
log.warning(
23-
f"""{file} is not a valid BIDS Stats Model file.
22+
log.warning(f"""{file} is not a valid BIDS Stats Model file.
2423
Please use the validator: https://bids-standard.github.io/stats-models/validator.html
25-
"""
26-
)
24+
""")
2725
log.warning(e)
2826
return 1
2927

0 commit comments

Comments
 (0)