Ignore import warning in _get_bot_module

This commit is contained in:
Mark Backman
2025-07-25 22:25:31 -04:00
parent 1284c24144
commit 579eaf0889

View File

@@ -97,7 +97,7 @@ def _get_bot_module():
# Try to import 'bot' module from current directory
try:
import bot
import bot # type: ignore[import-untyped]
return bot
except ImportError: