ryanrwatkins commited on
Commit
c96cd2d
·
verified ·
1 Parent(s): c7c6028

Update Gradio_UI.py

Browse files
Files changed (1) hide show
  1. Gradio_UI.py +1 -1
Gradio_UI.py CHANGED
@@ -41,7 +41,7 @@ import tempfile
41
 
42
  def _google_creds_as_file():
43
  temp = tempfile.NamedTemporaryFile()
44
- temp.write(json.dumps(service_account_info.encode()))
45
  temp.flush()
46
  return temp
47
 
 
41
 
42
  def _google_creds_as_file():
43
  temp = tempfile.NamedTemporaryFile()
44
+ temp.write(json.dumps(service_account_info).encode())
45
  temp.flush()
46
  return temp
47