fix(01-03): fix import collision between local telegram/ and pip package
The telegram/ directory's __init__.py shadowed the python-telegram-bot pip package. Remove __init__.py and use direct sibling imports instead. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
3a62e01f6f
commit
d08f3527cd
2 changed files with 2 additions and 3 deletions
|
|
@ -1 +0,0 @@
|
|||
"""Telegram bot for Claude Code homelab management."""
|
||||
|
|
@ -13,8 +13,8 @@ from pathlib import Path
|
|||
|
||||
from telegram import Update
|
||||
from telegram.ext import Application, CommandHandler, ContextTypes, MessageHandler, filters
|
||||
from telegram.session_manager import SessionManager
|
||||
from telegram.claude_subprocess import ClaudeSubprocess
|
||||
from session_manager import SessionManager
|
||||
from claude_subprocess import ClaudeSubprocess
|
||||
|
||||
# Setup logging
|
||||
logging.basicConfig(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue