marcossuzuki commited on
Commit
b20b652
·
verified ·
1 Parent(s): 9e65690

remove dreprecation warning

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -0
src/streamlit_app.py CHANGED
@@ -10,6 +10,8 @@ import streamlit.components.v1 as components
10
  import shap
11
  import matplotlib.pyplot as plt
12
  from huggingface_hub import HfFileSystem
 
 
13
 
14
  fs = HfFileSystem()
15
 
 
10
  import shap
11
  import matplotlib.pyplot as plt
12
  from huggingface_hub import HfFileSystem
13
+ import warnings
14
+ warnings.simplefilter("ignore", category=DeprecationWarning)
15
 
16
  fs = HfFileSystem()
17