

f string dobule quotes to single quotes to make it work on python 3.11
@1253a67cc7eee7d22d934d0f039ffa0d51c387ad
--- faster_whisper_server/main.py
+++ faster_whisper_server/main.py
... | ... | @@ -132,7 +132,7 @@ |
132 | 132 |
if exact_match is None: |
133 | 133 |
raise HTTPException( |
134 | 134 |
status_code=404, |
135 |
- detail=f"Model doesn't exists. Possible matches: {", ".join([model.id for model in models])}", |
|
135 |
+ detail=f"Model doesn't exists. Possible matches: {', '.join([model.id for model in models])}", |
|
136 | 136 |
) |
137 | 137 |
assert exact_match.created_at is not None |
138 | 138 |
assert exact_match.card_data is not None |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?