fibre_walk_project_code/main.py
2024-05-08 20:50:37 -04:00

11 lines
306 B
Python

import argparse
import ringfit.data as data
import click
if __name__ == "main":
parser = argparse.ArgumentParser(
description="Fitting the transient response of the fibre loops."
)
parser.add_argument(
"file_path", type=str, help="A required integer positional argument"
)