Turn unnecessary class into namespace

(cherry picked from commit 34165c7b2b)
This commit is contained in:
Gouvernathor 2024-03-27 00:30:17 +01:00 committed by LoafyLemon
parent 630ede144c
commit ea59c387d2
3 changed files with 94 additions and 99 deletions

View File

@ -538,7 +538,7 @@ init python:
# Grab data
if fromfile:
try:
imported = ImagePayload().extract(path)
imported = image_payload.extract(path)
except Exception as e:
renpy.notify("Import failed: Corrupted file.")
print(e)

View File

@ -222,7 +222,7 @@ init python:
)
displayable_to_file(d, path, size=(310, 470) )
ImagePayload().inject("_temp.png", filename, str(exported))
image_payload.inject("_temp.png", filename, str(exported))
os.remove(path)
else:
set_clipboard(exported)

File diff suppressed because it is too large Load Diff