diff --git a/func/usas/usas.py b/func/usas/usas.py index 1e7057c351497db90def3b81a622290f1e96c2b0..c0ca4fee37ca35047a0a173861b9d7818e961e81 100644 --- a/func/usas/usas.py +++ b/func/usas/usas.py @@ -1,7 +1,6 @@ import spacy - # Perform USAS on Text def run_usas_on_text(page): # We exclude the following components as we do not need them. @@ -17,7 +16,5 @@ def run_usas_on_text(page): for token in output_doc: print(f'{token.text}\t{token.pos_}\t{token._.pymusas_tags}') - - - result = {'output': "Hello USAS",'message': 'Done', 'code': 'SUCCESS'} + result = {'output': "Hello USAS", 'message': 'Done', 'code': 'SUCCESS'} return result