cahya commited on
Commit
54ddfdf
1 Parent(s): 50e2ceb

cosmetics change

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -109,7 +109,7 @@ if st.button("Run"):
109
  print("result:", result)
110
  if "error" in result:
111
  if type(result["error"]) is str:
112
- st.write(f'{result["error"]}.')
113
  if "estimated_time" in result:
114
  st.write(f'Please try it again in about {result["estimated_time"]:.0f} seconds')
115
  else:
 
109
  print("result:", result)
110
  if "error" in result:
111
  if type(result["error"]) is str:
112
+ st.write(f'{result["error"]}.', end=" ")
113
  if "estimated_time" in result:
114
  st.write(f'Please try it again in about {result["estimated_time"]:.0f} seconds')
115
  else: