Absolute path
All checks were successful
/ mypy (push) Successful in 21s
/ pylint (push) Successful in 18s
/ lint-and-typing (push) Successful in 24s
/ build-artifacts (push) Successful in 9s
/ publish-artifacts (push) Successful in 10s
/ release (push) Successful in 7s

This commit is contained in:
Firq 2024-08-09 19:14:12 +02:00
parent 1aee3e0efd
commit 7dfc5dcefa
Signed by: Firq
GPG key ID: 3ACC61C8CEC83C20
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ def run():
path = Paths.IMAGES / servantid
for f in path.iterdir():
process_sprite(f, sprites[f.stem], servantid)
print(f"Files have been saved at: {Paths.OUTPUT / servantid}")
print(f"Files have been saved at: {(Paths.OUTPUT / servantid).absolute()}")
def process_sprite(filepath: pathlib.Path, position: tuple, servantid: str):
im = Image.open(filepath)

View file

@ -1,6 +1,6 @@
[project]
name = "atlasimagecomposer"
version = "0.1.0-a.2"
version = "0.1.0-a.3"
dependencies = [
"numpy~=2.0.1",
"pillow~=10.4.0",