Update app.py
Browse files
app.py
CHANGED
@@ -77,7 +77,7 @@ def network_narrator(narrator_id):
|
|
77 |
return edge_full.rename(columns = {'Taraf Count': 'Tarafs', 'Hadith Count':'Hadiths', 'Isnad Count':'Isnads', 'Book Count':'Books'})
|
78 |
|
79 |
def narrator_retriever(name):
|
80 |
-
if 'ALL' in name:
|
81 |
return narrator_bios
|
82 |
else:
|
83 |
full_names = name.replace(', ', '|').replace(',', '|')
|
|
|
77 |
return edge_full.rename(columns = {'Taraf Count': 'Tarafs', 'Hadith Count':'Hadiths', 'Isnad Count':'Isnads', 'Book Count':'Books'})
|
78 |
|
79 |
def narrator_retriever(name):
|
80 |
+
if 'ALL' in name or 'all' in name:
|
81 |
return narrator_bios
|
82 |
else:
|
83 |
full_names = name.replace(', ', '|').replace(',', '|')
|