hussain2010 commited on
Commit
ef6f6b5
·
verified ·
1 Parent(s): 6f7cddb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -3,6 +3,10 @@ import geopandas as gpd
3
  import pandas as pd
4
  import pyarrow.parquet as pq
5
  from huggingface_hub import hf_hub_download
 
 
 
 
6
 
7
  # Set Streamlit Page Configuration
8
  st.set_page_config(page_title="Optimized GADM Data Processing", layout="wide")
 
3
  import pandas as pd
4
  import pyarrow.parquet as pq
5
  from huggingface_hub import hf_hub_download
6
+ import warnings
7
+
8
+ # Suppress specific RuntimeWarnings (USECOLS)
9
+ warnings.filterwarnings("ignore", category=RuntimeWarning, message=".*USECOLS.*")
10
 
11
  # Set Streamlit Page Configuration
12
  st.set_page_config(page_title="Optimized GADM Data Processing", layout="wide")