Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 13, 2025
1 parent fb6758c commit e1734c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_packaged_table_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
@pytest.mark.parametrize("workbook_version_folder", workbook_path.iterdir())
def test_packaged_table_configs_for_each_version(workbook_version_folder: Path):
xl_file = [file for file in workbook_version_folder.glob("[!.]*.xls*")]
assert (
len(xl_file) == 1
), f"There should only be one Excel workbook in each version sub-directory, got {xl_file}"
assert len(xl_file) == 1, (
f"There should only be one Excel workbook in each version sub-directory, got {xl_file}"
)
workbook_name = xl_file.pop()
workbook = Parser(workbook_name)

Expand Down

0 comments on commit e1734c9

Please sign in to comment.