Ignore import warning in _get_bot_module

This commit is contained in:
Mark Backman
2025-07-25 22:25:31 -04:00
parent f61bbd3d3d
commit c6e2bfe601

View File

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