juancamval commited on
Commit
266dfd2
·
verified ·
1 Parent(s): 2719a9a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -48,7 +48,7 @@ def load_data(table):
48
  """fertility, geo data, labor, population y predictions """
49
  try:
50
  if supabase:
51
- response = supabase.from_("public."+table).select("*").execute()
52
  print(f"Response object: {response}") # Inspect the entire response
53
  print(f"Response type: {type(response)}") # Check the object type
54
 
 
48
  """fertility, geo data, labor, population y predictions """
49
  try:
50
  if supabase:
51
+ response = supabase.from_(table).select("*").execute()
52
  print(f"Response object: {response}") # Inspect the entire response
53
  print(f"Response type: {type(response)}") # Check the object type
54