Commit c4d0cfa
authored
Create __init__.py
import warnings
from pathlib import Path
# Suppress RuntimeWarnings during specific imports
with warnings.catch_warnings():Add commentMore actions
warnings.simplefilter("ignore", category=RuntimeWarning)
# Local module imports
from .dependency_analyzer import DependencyAnalyzer, main as analyzer_main
from .error_diagnosis_engine import ErrorDiagnosisEngine
from .auto_fix_module import DependencyAutoFixer
# Define exports dynamically to reduce maintenance overhead
__all__ = [name for name in globals() if not name.startswith("_")]1 parent ec6d355 commit c4d0cfa
1 file changed
Lines changed: 13 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
0 commit comments