Amir8212 commited on
Commit
fd0e664
·
1 Parent(s): 67c64c6

chore: remove unnecessary prints

Browse files
Files changed (1) hide show
  1. app.py +0 -3
app.py CHANGED
@@ -301,9 +301,6 @@ import os
301
  app = FastAPI()
302
 
303
  def verify_token(authorization: str = Header(...)):
304
- print("AUTH TOKEN : " , os.getenv("AUTH_TOKEN"))
305
- print("authorization : " , authorization)
306
- # Extract the token from the Authorization header
307
  if not authorization.startswith("Bearer "):
308
  raise HTTPException(status_code=403, detail="Invalid or missing token")
309
 
 
301
  app = FastAPI()
302
 
303
  def verify_token(authorization: str = Header(...)):
 
 
 
304
  if not authorization.startswith("Bearer "):
305
  raise HTTPException(status_code=403, detail="Invalid or missing token")
306