From c9a8eb7cf494930c12e0a6f7de4ab0a49e665dfb Mon Sep 17 00:00:00 2001 From: raphael60650 Date: Wed, 28 Jul 2021 19:59:49 +0200 Subject: [PATCH] renamed a keyword in docstring --- source/wszst/img.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/wszst/img.py b/source/wszst/img.py index 63e118e..adabd24 100644 --- a/source/wszst/img.py +++ b/source/wszst/img.py @@ -4,7 +4,7 @@ import subprocess def encode(file: str, format: str) -> None: """ Encode an .png image into a new format - :param src_file: .png image + :param file: .png image :param format: new image format """ subprocess.run(["./tools/szs/wimgt", "ENCODE", file, "-x", format, "--overwrite"],