From 0aae067e950c9d026bda48cb4becef5df302f853 Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev Date: Fri, 6 Mar 2026 13:17:20 +0700 Subject: [PATCH] Remove auto-imports from src/__init__.py to avoid inference_sdk dependency Co-Authored-By: Claude Opus 4.6 --- src/__init__.py | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/src/__init__.py b/src/__init__.py index eb18949..e078cfd 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,17 +1,3 @@ """ -Pickle - Pickleball Ball Tracking System +Pickle Vision - Pickleball Referee System """ - -from .ball_detector import BallDetector -from .court_calibrator import CourtCalibrator, InteractiveCalibrator -from .ball_tracker import BallTracker, MultiObjectTracker -from .video_processor import VideoProcessor - -__all__ = [ - 'BallDetector', - 'CourtCalibrator', - 'InteractiveCalibrator', - 'BallTracker', - 'MultiObjectTracker', - 'VideoProcessor' -]