From 2d9d93149e6092ba1a673ebe6149645d356c8d74 Mon Sep 17 00:00:00 2001 From: Carlos Vega <carlos.vega@uni.lu> Date: Wed, 20 Nov 2019 10:48:04 +0100 Subject: [PATCH] resorted imports --- biokb/textminingservice_biokb/biokb.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/biokb/textminingservice_biokb/biokb.py b/biokb/textminingservice_biokb/biokb.py index 1b0aecf..a88f3ab 100644 --- a/biokb/textminingservice_biokb/biokb.py +++ b/biokb/textminingservice_biokb/biokb.py @@ -1,13 +1,14 @@ -import logging -from typing import List - -from SPARQLWrapper import SPARQLWrapper, JSON, POSTDIRECTLY +from textminingservice_biokb.utils import uri_to_entity_code, standardise_underscored_entity_code +from textminingservice.models.publication import Publication +from textminingservice.models.coocurrence import CoOccurrence +from textminingservice.TextMiningService import TextMiningService from SPARQLWrapper.SPARQLExceptions import QueryBadFormed +from SPARQLWrapper import SPARQLWrapper, JSON, POSTDIRECTLY +from typing import List +import json +import requests +import logging -from textminingservice.TextMiningService import TextMiningService -from textminingservice.models.coocurrence import CoOccurrence -from textminingservice.models.publication import Publication -from textminingservice_biokb.utils import uri_to_entity_code, standardise_underscored_entity_code logger = logging.getLogger(__name__) -- GitLab