diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-07-13 22:01:46 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-07-13 22:01:46 +0100 |
commit | b33c3e948b72f71176cd57afd2085835bab64ff7 (patch) | |
tree | ac08889ff6221afb23171dd5654b340799f84d4f /tools/pngpix.py | |
parent | 908dac2677fc404dd198fe18f10f13c0a21cf86c (diff) | |
download | gold-mine-run-b33c3e948b72f71176cd57afd2085835bab64ff7.tar.gz gold-mine-run-b33c3e948b72f71176cd57afd2085835bab64ff7.zip |
Use removesuffix
Diffstat (limited to 'tools/pngpix.py')
-rwxr-xr-x | tools/pngpix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pngpix.py b/tools/pngpix.py index e803b82..67f8755 100755 --- a/tools/pngpix.py +++ b/tools/pngpix.py @@ -37,7 +37,7 @@ def main(): if not data: parser.error("failed to extract the pixel data") - tmp = args.output.rstrip(".o") + tmp = args.output.removesuffix(".o") with open(tmp, "wb") as fd: fd.write(bytearray(data)) fd.flush() |