remove 'get_system_settings' function

This commit is contained in:
Jakub Trllo 2024-02-27 14:23:33 +01:00
parent 01e69fa321
commit fdb18f1f39
2 changed files with 0 additions and 6 deletions

View file

@ -1,7 +1,6 @@
from .lib import (
get_ayon_settings,
get_studio_settings,
get_system_settings,
get_project_settings,
get_general_environments,
get_current_project_settings,
@ -11,7 +10,6 @@ from .lib import (
__all__ = (
"get_ayon_settings",
"get_studio_settings",
"get_system_settings",
"get_general_environments",
"get_project_settings",
"get_current_project_settings",

View file

@ -163,10 +163,6 @@ def get_studio_settings(*args, **kwargs):
return _AyonSettingsCache.get_value_by_project(None)
# Backward compatibility
get_system_settings = get_studio_settings
def get_project_settings(project_name, *args, **kwargs):
return _AyonSettingsCache.get_value_by_project(project_name)