Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
lharries committed May 10, 2024
1 parent 3475295 commit 538f3df
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions examples/dubbing/e2e-example/backend/app.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
import json
import os
import re
import signal
import threading
import uuid
from dataclasses import asdict, dataclass
from datetime import timedelta
from typing import List

from dotenv import load_dotenv
Expand Down Expand Up @@ -145,7 +141,7 @@ def project_detail(id: str):
new_meta = get_metadata(id)
project = ProjectData.from_dict(new_meta)
project.save()
except Exception as e:
except Exception:
return make_response(jsonify({"error": "Project not found"}), 404)

# check if ready, if so download it
Expand Down

0 comments on commit 538f3df

Please sign in to comment.