Skip to content
Snippets Groups Projects
Commit 959d4a19 authored by Alexander Heidelbach's avatar Alexander Heidelbach
Browse files

Add extended attribute to FitParameter

parent 414fefd6
Branches
No related tags found
No related merge requests found
......@@ -29,6 +29,7 @@ class Fitparameter:
latex_name: Optional[str] = None,
unit: str = "",
shuffle: bool = True,
extended: bool = False,
) -> None:
self.name = name
self.value = value
......@@ -39,6 +40,7 @@ class Fitparameter:
self.latex_name = name if latex_name is None else latex_name
self.unit = unit
self.shuffle = shuffle
self.extended = extended
@property
def parameter_info_dict(self) -> dict:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment