Gladiator commited on
Commit
4bc7973
·
1 Parent(s): 90a69e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -38,7 +38,7 @@ if __name__ == "__main__":
38
  )
39
 
40
  plt.axis('off')
41
- fig, ax = plt.subplots(1, 2)
42
  ax1.imshow(preds[0])
43
  ax2.imshow(flows[0])
44
  st.pyplot(fig)
 
38
  )
39
 
40
  plt.axis('off')
41
+ fig, (ax1, ax2) = plt.subplots(1, 2)
42
  ax1.imshow(preds[0])
43
  ax2.imshow(flows[0])
44
  st.pyplot(fig)