Skip to content

Commit 8553cb3

Browse files
committed
Format
1 parent fa5d6d7 commit 8553cb3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/sio3pack/packages/sinolpack/model.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -505,11 +505,12 @@ def _process_existing_tests(self):
505505
test_id = match.group(1)
506506
group = match.group(2)
507507
test_ids.add((test_id, group, test_name))
508-
elif not file.startswith('.') and not self.configuration.allow_unrecognized_files:
508+
elif not file.startswith(".") and not self.configuration.allow_unrecognized_files:
509509
raise ProcessPackageError(
510510
f"Unrecognized file in '{ext}' directory: {file}",
511511
f"Unrecognized file in '{ext}' directory ({file}). All files in the {ext} directory "
512-
f"should match the pattern: " f"{self._get_test_regex()}.",
512+
f"should match the pattern: "
513+
f"{self._get_test_regex()}.",
513514
)
514515
# TODO: Sort this properly
515516
test_ids = sorted(test_ids)

0 commit comments

Comments
 (0)