Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DA-253] storage api methods with asset service and local filesystem backends #199

Draft
wants to merge 8 commits into
base: anima_stable
Choose a base branch
from
2 changes: 1 addition & 1 deletion src/stability_sdk/animation_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def project_load(title: str):
global project
project = next(p for p in projects if p.title == title)
try:
data = project.load_settings()
data = project.get_settings()
except OutOfCreditsException as e:
log = f"Not enough credits to load project '{title}'\n{e.details}"
returns = args_to_controls(get_default_project())
Expand Down