diff --git a/tweaks/custom_gestalt_tweaks.py b/tweaks/custom_gestalt_tweaks.py index 446d84f..1c4aed9 100644 --- a/tweaks/custom_gestalt_tweaks.py +++ b/tweaks/custom_gestalt_tweaks.py @@ -45,7 +45,7 @@ class CustomGestaltTweaks: custom_tweaks: list[CustomGestaltTweak] = [] def create_tweak(key: str="", value: str="1", value_type: ValueType = ValueType.Integer) -> int: - new_tweak = MobileGestaltTweak("", key, value=value) + new_tweak = MobileGestaltTweak(key, value=value) CustomGestaltTweaks.custom_tweaks.append(CustomGestaltTweak(new_tweak, value_type)) # return the tweak id return len(CustomGestaltTweaks.custom_tweaks) - 1