fix fix
This commit is contained in:
parent
9cc7c5b875
commit
07a9e759dc
1 changed files with 3 additions and 4 deletions
7
app.py
7
app.py
|
@ -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():
|
||||
|
|
Loading…
Add table
Reference in a new issue