Spaces:
Runtime error
Runtime error
jerome-white
commited on
Commit
·
e656628
1
Parent(s):
8a2921c
Corrected user/pass key lookup
Browse files
app.py
CHANGED
@@ -121,5 +121,5 @@ with gr.Blocks() as demo:
|
|
121 |
)
|
122 |
|
123 |
if __name__ == '__main__':
|
124 |
-
auth = tuple(os.getenv(f'GRADIO_{x}') for x in ('USER, PASS'))
|
125 |
demo.queue().launch(share=True, auth=auth)
|
|
|
121 |
)
|
122 |
|
123 |
if __name__ == '__main__':
|
124 |
+
auth = tuple(os.getenv(f'GRADIO_{x}') for x in ('USER', 'PASS'))
|
125 |
demo.queue().launch(share=True, auth=auth)
|