Skip to content

JOSS review: Unused arguments in the datasets/halle_DOP20.py module

There's reference in the docstring to non-existing args in your halle_DOP.py functions, e.g.

def load_tiles(zip_filename):
    """
    Downloads subtiles of DOP20 tile # 32_704_5708_2 from a URL with a progress bar.

    Args:
        url: The URL of the file to download.
        filename: The name of the file to save the downloaded content to.
    """

Probably just not updated after a refactor. I would suggest using a linter to automatically highlight these across the repository (e.g. ruff)