5 lines
192 B
Python
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('.')]
|