summaryrefslogtreecommitdiff
path: root/py_modules/lsfg_vk/config_schema.py
diff options
context:
space:
mode:
Diffstat (limited to 'py_modules/lsfg_vk/config_schema.py')
-rw-r--r--py_modules/lsfg_vk/config_schema.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/py_modules/lsfg_vk/config_schema.py b/py_modules/lsfg_vk/config_schema.py
index 92a74a3..e39be54 100644
--- a/py_modules/lsfg_vk/config_schema.py
+++ b/py_modules/lsfg_vk/config_schema.py
@@ -60,15 +60,6 @@ class ConfigurationManager:
return cast(ConfigurationData, dict(get_defaults()))
@staticmethod
- def get_defaults_with_dll_detection(dll_detection_service=None) -> ConfigurationData:
- defaults = ConfigurationManager.get_defaults()
- if dll_detection_service is not None:
- result = dll_detection_service.check_lossless_scaling_dll()
- if result.get("detected") and result.get("path"):
- defaults["dll"] = result["path"]
- return defaults
-
- @staticmethod
def get_field_names() -> list[str]:
return list(CONFIG_SCHEMA)