Files
ndbioimage/ndbioimage/readers/__init__.py
Wim Pomp 5a34adef7b - Slicing bugfix.
- Sort imports.
- Make sitk-elastix optional again.
2023-11-20 14:47:47 +01:00

5 lines
192 B
Python

from pathlib import Path
__all__ = [file.stem for file in Path(__file__).parent.iterdir()
if file.suffix == ".py" and not file == Path(__file__) and not file.stem.startswith('.')]