| """Implementation of the Atomic-SPADL language.""" | |
| __all__ = [ | |
| "convert_to_atomic", | |
| "AtomicSPADLSchema", | |
| "bodyparts_df", | |
| "actiontypes_df", | |
| "add_names", | |
| "play_left_to_right", | |
| ] | |
| from .base import convert_to_atomic | |
| from .config import actiontypes_df, bodyparts_df | |
| from .schema import AtomicSPADLSchema | |
| from .utils import add_names, play_left_to_right | |