From 51a56c09493f83e5e4d1428fcdb5bcc81e7c6ca2 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sat, 9 Nov 2024 16:39:08 +0100 Subject: [PATCH] refactor(bot): remove unused import statements Removed the unused import statements for `RoomGetEventResponse` and `MegolmEvent` to improve code readability and maintainability. Unused imports can lead to confusion and unnecessarily inflate the codebase. This cleanup also aids in preventing potential import-related issues in the future. --- src/matrix_applicationbot/classes/bot.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/matrix_applicationbot/classes/bot.py b/src/matrix_applicationbot/classes/bot.py index e329cde..4d45a3e 100644 --- a/src/matrix_applicationbot/classes/bot.py +++ b/src/matrix_applicationbot/classes/bot.py @@ -14,8 +14,6 @@ from nio import ( RoomInviteResponse, ReactionEvent, RoomSendResponse, - RoomGetEventResponse, - MegolmEvent, ) import logging