Skip to content

Commit

Permalink
fix: linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Kohulan committed Apr 19, 2023
1 parent 83272f7 commit 6e8a2e2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/routers/chem.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,13 +232,13 @@ async def Check_Errors(smiles: str, fix: Optional[bool] = False):
issues_new = "No Errors Found"

parsed_data = {
"source" : {
"SMILES" : smiles,
"messages" : issues,
"source": {
"SMILES": smiles,
"messages": issues,
},
"standardized" : {
"SMILES" : standardizedsmiles,
"messages" : issues_new,
"standardized": {
"SMILES": standardizedsmiles,
"messages": issues_new,
},
}
return parsed_data
Expand Down

0 comments on commit 6e8a2e2

Please sign in to comment.