Spaces:
Sleeping
Sleeping
typo
Browse files
app.py
CHANGED
|
@@ -159,7 +159,7 @@ def main():
|
|
| 159 |
# Filter the competition summary dataframe by miner hotkey if a search term is entered
|
| 160 |
if miner_hotkey_search:
|
| 161 |
competition_summary_df = competition_summary_df[
|
| 162 |
-
competition_summary_df["
|
| 163 |
]
|
| 164 |
|
| 165 |
if not competition_summary_df.empty:
|
|
|
|
| 159 |
# Filter the competition summary dataframe by miner hotkey if a search term is entered
|
| 160 |
if miner_hotkey_search:
|
| 161 |
competition_summary_df = competition_summary_df[
|
| 162 |
+
competition_summary_df["Winning Hotkey"].str.contains(miner_hotkey_search, na=False, case=False)
|
| 163 |
]
|
| 164 |
|
| 165 |
if not competition_summary_df.empty:
|