mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
Fix windows flake (#3650)
* fix windows flake * format backend --------- Co-authored-by: Freddy Boulton <alfonsoboulton@gmail.com>
This commit is contained in:
parent
212961ef6a
commit
b1f8d11e4e
@ -1280,7 +1280,10 @@ class TestProgressBar:
|
||||
if msg["msg"] == "send_hash":
|
||||
await ws.send(json.dumps({"fn_index": 0, "session_hash": "shdce"}))
|
||||
if msg["msg"] == "progress":
|
||||
progress_updates.append(msg["progress_data"])
|
||||
if msg[
|
||||
"progress_data"
|
||||
]: # Ignore empty lists which sometimes appear on Windows
|
||||
progress_updates.append(msg["progress_data"])
|
||||
if msg["msg"] == "process_completed":
|
||||
completed = True
|
||||
break
|
||||
|
Loading…
x
Reference in New Issue
Block a user