Skip to content

Commit 8c76879

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 227cb3e commit 8c76879

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

file_tree_check/main.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -564,19 +564,15 @@ def main():
564564
try:
565565
pars.search_expression = re.compile(pars.search_expression)
566566
except TypeError as e:
567-
logger.warning(
568-
f"Search Criteria {pars.search_expression} \
569-
is invalid, resuming without criteria: {e}"
570-
)
567+
logger.warning(f"Search Criteria {pars.search_expression} \
568+
is invalid, resuming without criteria: {e}")
571569
pars.search_expression = None
572570

573571
configuration = Configuration(pars)
574572

575-
logger.info(
576-
f"Output file paths: Summary: {pars.summary_path},\
573+
logger.info(f"Output file paths: Summary: {pars.summary_path},\
577574
Tree: {pars.tree_path},\
578-
CSV: {pars.csv_path}"
579-
)
575+
CSV: {pars.csv_path}")
580576
logger.debug("Launching exploration of target directory.")
581577

582578
paths = generate_tree(

0 commit comments

Comments
 (0)