summaryrefslogtreecommitdiff
path: root/py_modules
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-21 23:15:29 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-21 23:15:29 -0400
commit4112393b17d25e54f1b8822734210b045da97613 (patch)
tree7fd335fb69fc7bf2260acd72a505ae5476bbd6b6 /py_modules
parente54b7e2c5f3a736f248353317007f922771ab0c7 (diff)
downloaddecky-lsfg-vk-4112393b17d25e54f1b8822734210b045da97613.tar.gz
decky-lsfg-vk-4112393b17d25e54f1b8822734210b045da97613.zip
dry up with py generators for ts backends
Diffstat (limited to 'py_modules')
-rw-r--r--py_modules/lsfg_vk/config_schema.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/py_modules/lsfg_vk/config_schema.py b/py_modules/lsfg_vk/config_schema.py
index 39593ab..c82d1d3 100644
--- a/py_modules/lsfg_vk/config_schema.py
+++ b/py_modules/lsfg_vk/config_schema.py
@@ -33,19 +33,6 @@ class ConfigField:
return value
-@dataclass
-class ConfigField:
- """Configuration field definition"""
- name: str
- field_type: ConfigFieldType
- default: Union[bool, int, float, str]
- description: str
-
- def get_toml_value(self, value: Union[bool, int, float, str]) -> Union[bool, int, float, str]:
- """Get the value for TOML output"""
- return value
-
-
# Use shared configuration schema as source of truth
CONFIG_SCHEMA: Dict[str, ConfigField] = {
field_name: ConfigField(