Skip to content

Commit

Permalink
fix trapi desc
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Oct 17, 2023
1 parent e56e5f9 commit cab4da6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/trapi_predict_kit/trapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def __init__(
itrb_url_prefix: Optional[str] = None,
dev_server_url: Optional[str] = None,
trapi_example: Optional[Query] = None,
trapi_description: Optional[str] = default_trapi_description,
trapi_description: str = default_trapi_description,
info: Optional[Dict[str, Any]] = None,
title="Translator Reasoner API",
version="1.0.0",
Expand All @@ -78,6 +78,7 @@ def __init__(
self.infores = f"infores:{itrb_url_prefix}"
self.openapi_version = openapi_version
self.trapi_example = trapi_example if trapi_example else default_trapi_example
self.trapi_description = trapi_description

# On ITRB deployment and local dev we directly use the current server
self.servers = []
Expand Down

0 comments on commit cab4da6

Please sign in to comment.