From ed81eb749c49631c0b36f06cfafa4cc9a501f468 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 3 Sep 2024 14:33:53 +0200 Subject: [PATCH] Remove unused import in worker.py Deleted import of the 'io' module from worker.py as it was not being used. This helps clean up the code and potentially reduce memory usage. Cleaning up unused imports also makes the codebase more maintainable. --- pythonProject/worker.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pythonProject/worker.py b/pythonProject/worker.py index 835a8f3..c074eda 100644 --- a/pythonProject/worker.py +++ b/pythonProject/worker.py @@ -1,5 +1,4 @@ import base64 -import io import json import logging import os