- """Compatibility package for vendored lf-scanner sources.
- The vendored pypulseq copy still contains absolute imports such as
- ``LF_scanner.pypulseq``. Expose ``libs/lf-scanner`` as the package path so
- those imports continue to resolve while application code imports ``pypulseq``
- directly.
- """
- from pathlib import Path
- _VENDORED_ROOT = Path(__file__).resolve().parent.parent / "libs" / "lf-scanner"
- __path__ = [str(_VENDORED_ROOT)]
|