More nitpick

This commit is contained in:
AuroraWright
2024-06-26 06:07:25 +02:00
parent 3bd3cf65bc
commit 7a4b9a73b9

View File

@@ -795,7 +795,7 @@ def run(read_from=None,
else: else:
if not paused: if not paused:
img = Image.open(io.BytesIO(item)) img = Image.open(io.BytesIO(item))
process_and_write_results(img, write_to, notifications, '', None) process_and_write_results(img, write_to, notifications, None, None)
elif read_from == 'unixsocket': elif read_from == 'unixsocket':
while True: while True:
try: try:
@@ -805,7 +805,7 @@ def run(read_from=None,
else: else:
if not paused: if not paused:
img = Image.open(io.BytesIO(item)) img = Image.open(io.BytesIO(item))
process_and_write_results(img, write_to, notifications, '', None) process_and_write_results(img, write_to, notifications, None, None)
elif read_from == 'clipboard': elif read_from == 'clipboard':
process_clipboard = False process_clipboard = False
if windows_clipboard_polling: if windows_clipboard_polling:
@@ -853,7 +853,7 @@ def run(read_from=None,
process_clipboard = True process_clipboard = True
if process_clipboard: if process_clipboard:
process_and_write_results(img, write_to, notifications, '', None) process_and_write_results(img, write_to, notifications, None, None)
just_unpaused = False just_unpaused = False
@@ -932,7 +932,7 @@ def run(read_from=None,
except (UnidentifiedImageError, OSError) as e: except (UnidentifiedImageError, OSError) as e:
logger.warning(f'Error while reading file {path}: {e}') logger.warning(f'Error while reading file {path}: {e}')
else: else:
process_and_write_results(img, write_to, notifications, '', None) process_and_write_results(img, write_to, notifications, None, None)
img.close() img.close()
if delete_images: if delete_images:
Path.unlink(path) Path.unlink(path)