diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2023-02-27 16:01:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-27 16:01:37 +0100 |
| commit | ed4aa55a733986436853e2ee7ad22f757b09fcb1 (patch) | |
| tree | 5a2fcb1159c855d412bd540763f3a627ee0f1266 /lib/utils/param.py | |
| parent | 1885deff350fc29e80afa292c899a824c90d0c23 (diff) | |
Circular fill (#2053)
Diffstat (limited to 'lib/utils/param.py')
| -rw-r--r-- | lib/utils/param.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/utils/param.py b/lib/utils/param.py new file mode 100644 index 00000000..c7dfdab0 --- /dev/null +++ b/lib/utils/param.py @@ -0,0 +1,8 @@ +class ParamOption: + def __init__(self, param_id=None, name=None, legacy=None): + self.id: str = param_id + self.name: str = name + self.legacy: int = legacy + + def __repr__(self): + return "ParamOption(%s, %s, %s)" % (self.id, self.name, self.legacy) |
