Skip to content

taps.apps.configs.montage

MontageConfig

Bases: AppConfig

Montage application configuration.

get_app()

get_app() -> App

Create an application instance from the config.

Source code in taps/apps/configs/montage.py
def get_app(self) -> App:
    """Create an application instance from the config."""
    from taps.apps.montage import MontageApp

    return MontageApp(
        img_folder=pathlib.Path(self.img_folder),
        img_tbl=self.img_tbl,
        img_hdr=self.img_hdr,
        output_dir=self.output_dir,
    )