Skip to content

Commit

Permalink
Fixed bugs and integrated into new trapi_model version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chase Yakaboski committed May 10, 2021
1 parent fe4a6b2 commit 067cf38
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions chp_client/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
import json
from jsonschema import ValidationError

from trapi_model import Message, Query
from trapi_model.constants import *
from trapi_model.query import Query
from trapi_model.message import Message
from trapi_model.biolink.constants import *

from chp_client.exceptions import *

Expand Down
2 changes: 1 addition & 1 deletion tests/generate_regression_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import random
import sys

from trapi_model.constants import *
from trapi_model.biolink.constants import *

logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import os
from collections import defaultdict

from trapi_model import Query
from trapi_model.query import Query

from generate_regression_tests import QueryBuildingRegressionSuite
from chp_client.exceptions import QueryBuildError
Expand Down

0 comments on commit 067cf38

Please sign in to comment.