Skip to content

Commit 8f9ca98

Browse files
mangod12claude
andcommitted
fix: remove extraneous f-string prefixes to pass ruff lint
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 640f51d commit 8f9ca98

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

backend/app/core/model_downloader.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ def download_models_from_gcs(bucket_name: str, local_dir: str = "/tmp/models") -
2424
os.makedirs(local_dir, exist_ok=True)
2525

2626
models = {
27-
"intent_model.onnx": f"models/intent_model.onnx",
28-
"emotion_model.onnx": f"models/emotion_model.onnx",
27+
"intent_model.onnx": "models/intent_model.onnx",
28+
"emotion_model.onnx": "models/emotion_model.onnx",
2929
}
3030

3131
downloaded = {}

0 commit comments

Comments
 (0)