Files
2026-02-19 15:39:29 +00:00

12 lines
292 B
Python
Executable File

#!/usr/bin/env python3
"""Wrapper to run maps_scanner as a CLI tool."""
import sys
import os
# Ensure the parent directory is on the path so relative imports work
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from maps_scanner.__main__ import main
main()