Skip to content

Commit

Permalink
fix: linting issue resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
CS76 committed Mar 21, 2023
1 parent 72e00a4 commit 8537b83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def custom_openapi():
return app.openapi_schema
openapi_schema = get_openapi(
title="Cheminf Micro Services",
version = os.getenv("RELEASE_VERSION", "pre-release"),
version=os.getenv("RELEASE_VERSION", "pre-release"),
description="This set of essential and valuable microservices is designed to be accessed via API calls to support cheminformatics. Generally, it is designed to work with SMILES-based inputs and could be used to translate between different machine-readable representations, get Natural Product (NP) likeliness scores, visualize chemical structures, and generate descriptors. In addition, the microservices also host an instance of STOUT and another instance of DECIMER (two deep learning models for IUPAC name generation and optical chemical structure recognition, respectively).",
routes=app.routes,
)
Expand Down

0 comments on commit 8537b83

Please sign in to comment.