SuveenE commited on
Commit
4bfae70
·
1 Parent(s): 48fae9a

Update dataset limit

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -46,7 +46,7 @@ def search_datasets_fn(org_name: str) -> List[str]:
46
  if r not in seen:
47
  unique.append(r)
48
  seen.add(r)
49
- return unique[:500]
50
  except Exception as e:
51
  print(f"Error searching datasets: {e}")
52
  return []
 
46
  if r not in seen:
47
  unique.append(r)
48
  seen.add(r)
49
+ return unique[:1000]
50
  except Exception as e:
51
  print(f"Error searching datasets: {e}")
52
  return []