nesticot commited on
Commit
5fb5685
·
verified ·
1 Parent(s): 8a3e5fc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -198,7 +198,10 @@ def server(input, output, session):
198
  pl.col('pitch_type').count().over('pitch_type').alias('pitch_count')
199
  ))
200
  return df
201
- except: TypeError
 
 
 
202
  return None
203
 
204
 
 
198
  pl.col('pitch_type').count().over('pitch_type').alias('pitch_count')
199
  ))
200
  return df
201
+
202
+
203
+ except TypeError:
204
+ print("NONE")
205
  return None
206
 
207