Spaces:
Runtime error
Runtime error
Commit ·
fe70a3e
1
Parent(s): b1e5d0d
Update main.py
Browse files
main.py
CHANGED
|
@@ -167,13 +167,10 @@ def process_json_sf(nl_json, sentence):
|
|
| 167 |
|
| 168 |
|
| 169 |
|
| 170 |
-
def main(
|
| 171 |
-
|
| 172 |
-
Function to bind together all the info and be executed
|
| 173 |
-
"""
|
| 174 |
-
|
| 175 |
nl_data = natural_language_module(sentence)
|
| 176 |
-
nl_json = process_json_sf(nl_data, sentence)
|
| 177 |
nl_json_with_null = replace_zero_with_null(nl_json)
|
| 178 |
|
| 179 |
return nl_json_with_null
|
|
|
|
| 167 |
|
| 168 |
|
| 169 |
|
| 170 |
+
def main():
|
| 171 |
+
|
|
|
|
|
|
|
|
|
|
| 172 |
nl_data = natural_language_module(sentence)
|
| 173 |
+
nl_json = process_json_sf(nl_data, sentence)
|
| 174 |
nl_json_with_null = replace_zero_with_null(nl_json)
|
| 175 |
|
| 176 |
return nl_json_with_null
|