- Replace all Dict/List type hints with dict/list for Python 3.12+ compatibility - Add __main__.py to make package executable as module - Remove unused imports (cv2, numpy, ffmpeg) that were causing warnings - Fix bare except clause to use Exception - Server now starts successfully without import errors
6 lines
117 B
Python
6 lines
117 B
Python
"""Main entry point for mcp_video_editor package."""
|
|
|
|
from .server import main
|
|
|
|
if __name__ == "__main__":
|
|
main() |