Spaces:
Sleeping
Sleeping
remove logging
Browse files- clients.py +2 -2
clients.py
CHANGED
@@ -388,11 +388,11 @@ def fetch_analytics_data(host, start_date=None, end_date=None):
|
|
388 |
df = pd.DataFrame(records)
|
389 |
|
390 |
# Debug: Display the DataFrame structure
|
391 |
-
st.write("Fetched DataFrame structure:", df.head())
|
392 |
|
393 |
# Check if DataFrame is empty
|
394 |
if df.empty:
|
395 |
-
st.warning("No data available for the specified date range.")
|
396 |
return df
|
397 |
|
398 |
# Filter by date range if specified
|
|
|
388 |
df = pd.DataFrame(records)
|
389 |
|
390 |
# Debug: Display the DataFrame structure
|
391 |
+
#st.write("Fetched DataFrame structure:", df.head())
|
392 |
|
393 |
# Check if DataFrame is empty
|
394 |
if df.empty:
|
395 |
+
#st.warning("No data available for the specified date range.")
|
396 |
return df
|
397 |
|
398 |
# Filter by date range if specified
|