diff --git a/leafmap/leafmap.py b/leafmap/leafmap.py index 8be04858f2..ce94ca149a 100644 --- a/leafmap/leafmap.py +++ b/leafmap/leafmap.py @@ -2478,8 +2478,8 @@ def add_gdf( try: if gdf[col].dtype in ["datetime64[ns]", "datetime64[ns, UTC]"]: gdf[col] = gdf[col].astype(str) - except Exception as e: - print(e) + except: + pass data = gdf_to_geojson(gdf, epsg="4326")