This commit is contained in:
jupfi 2024-04-17 18:05:17 +02:00
parent db3269351e
commit 4984a15001

View file

@ -84,6 +84,7 @@ class Setting(QObject):
class NumericalSetting(Setting): class NumericalSetting(Setting):
"""A setting that is a numerical value. """A setting that is a numerical value.
It can additionally have a minimum and maximum value. It can additionally have a minimum and maximum value.
""" """
def __init__(self, name: str, description: str, default, min_value = None, max_value = None ) -> None: def __init__(self, name: str, description: str, default, min_value = None, max_value = None ) -> None:
@ -95,6 +96,8 @@ class NumericalSetting(Setting):
Args: Args:
description (str): The description of the setting. description (str): The description of the setting.
min_value: The minimum value of the setting.
max_value: The maximum value of the setting.
Returns: Returns:
str: The description of the setting with the limits. str: The description of the setting with the limits.