Files
Lewis Tunstall 000a9083d0 Fix style
2023-01-04 15:15:41 +11:00

8 lines
179 B
Python

import typer
def main(output_dir: str = "data"):
"""Download and prepare the dataset for use."""
raise NotImplementedError
if __name__ == "__main__":
typer.run(main)