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.
This commit is contained in:
Julien Fastré 2024-09-03 14:33:53 +02:00
parent 41ba98ee91
commit ed81eb749c
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB

View File

@ -1,5 +1,4 @@
import base64 import base64
import io
import json import json
import logging import logging
import os import os