hvoss-techfak commited on
Commit
db9c5a3
·
verified ·
1 Parent(s): b210c28

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -107,7 +107,7 @@ def _check_quota(required_sec: int):
107
  Raises RuntimeError if not enough.
108
  """
109
  remaining = int(os.getenv("ZEROGPU_REMAINING", "0"))
110
- print(os.env)
111
  if remaining < required_sec:
112
  raise RuntimeError(
113
  f"Insufficient ZeroGPU quota: need {required_sec}s but only {remaining}s left.\n"
 
107
  Raises RuntimeError if not enough.
108
  """
109
  remaining = int(os.getenv("ZEROGPU_REMAINING", "0"))
110
+ print(os.environ)
111
  if remaining < required_sec:
112
  raise RuntimeError(
113
  f"Insufficient ZeroGPU quota: need {required_sec}s but only {remaining}s left.\n"