From 2c7349503a05870305857e7d6d0fd73682430f67 Mon Sep 17 00:00:00 2001 From: Kenny Van de Maele Date: Wed, 3 Jun 2026 22:41:06 +0200 Subject: [PATCH] chore: remove unused uuid import in app.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit app.py imports uuid but never uses it (pyflakes: 'uuid imported but unused'). Drop the dead import — no behaviour change. --- app.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app.py b/app.py index 7a00722..4160baf 100644 --- a/app.py +++ b/app.py @@ -34,7 +34,6 @@ from dotenv import load_dotenv # is silently ignored and the user is unexpectedly forced to log in (issue #142). # utf-8-sig reads plain UTF-8 (no BOM) identically, so this is safe everywhere. load_dotenv(encoding="utf-8-sig") -import uuid import asyncio import logging