Khachatur Mirijanyan
commited on
Commit
·
ea56acd
1
Parent(s):
b75450f
Big Small Query
Browse files
app.py
CHANGED
@@ -24,7 +24,7 @@ def check_query(query):
|
|
24 |
|
25 |
def answer_question(query):
|
26 |
query_check = check_query(query)
|
27 |
-
if
|
28 |
return("BIG TABLE")
|
29 |
if query_check == 'small':
|
30 |
return('SMALL TABLE')
|
|
|
24 |
|
25 |
def answer_question(query):
|
26 |
query_check = check_query(query)
|
27 |
+
if isinstance(query_check, dict):
|
28 |
return("BIG TABLE")
|
29 |
if query_check == 'small':
|
30 |
return('SMALL TABLE')
|