This commit is contained in:
deneb 2025-03-07 23:53:43 +01:00
parent 9cc7c5b875
commit 07a9e759dc

7
app.py
View file

@ -21,11 +21,10 @@ app = Flask(__name__)
volume: float = 50
def get_path(base: Path, file: LiteralString | Path):
p = base.resolve().joinpath(Path(file).resolve())
print(p)
def get_path(base: Path, file: LiteralString | str | Path):
p = base.resolve().joinpath(file)
p.resolve().relative_to(base)
return p
def cleanup_unclean():