Apply come formatting

This commit is contained in:
James Grogan 2024-09-29 18:26:57 +01:00
parent 61599cb76c
commit 29719cba6e
6 changed files with 29 additions and 31 deletions

View file

@ -1,6 +1,5 @@
from pathlib import Path
def get_files_recursive(search_path: Path,
extension: str) -> list[Path]:
return list(search_path.rglob(f"*.{extension}"))
def get_files_recursive(search_path: Path, extension: str) -> list[Path]:
return list(search_path.rglob(f"*.{extension}"))