zliang commited on
Commit
26fb348
·
verified ·
1 Parent(s): d1cbc99

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,10 +9,10 @@ import base64
9
 
10
  app = FastAPI()
11
 
12
- os.environ.get("public_key")
13
 
14
  imagekit = ImageKit(
15
- public_key=public_key,
16
  private_key=private_key,
17
  url_endpoint=url_endpoint
18
  )
 
9
 
10
  app = FastAPI()
11
 
12
+
13
 
14
  imagekit = ImageKit(
15
+ public_key=os.environ.get("public_key"),
16
  private_key=private_key,
17
  url_endpoint=url_endpoint
18
  )