Change to python project format

This commit is contained in:
James Grogan 2024-09-29 18:23:09 +01:00
parent b20465a3d7
commit 61599cb76c
27 changed files with 268 additions and 123 deletions

View file

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