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:
Mikkel Georgsen 2026-02-04 17:57:22 +00:00
parent 3a62e01f6f
commit d08f3527cd
2 changed files with 2 additions and 3 deletions

View file

@ -1 +0,0 @@
"""Telegram bot for Claude Code homelab management."""

View file

@ -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(