mirror of
https://github.com/vale981/fibre_walk_project_code
synced 2025-03-04 17:31:39 -05:00
11 lines
306 B
Python
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"
|
|
)
|