Skip to content

Commit

Permalink
drop noreturn
Browse files Browse the repository at this point in the history
  • Loading branch information
htz1992213 committed Feb 5, 2024
1 parent 867001b commit 6f9d3d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mdgo/forcefield/pubchem.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import os
import time
from typing import Final, NoReturn
from typing import Final
from urllib.parse import quote

import pubchempy as pcp
Expand Down Expand Up @@ -103,7 +103,7 @@ def obtain_entry(self, search_text: str, name: str, output_format: str = "sdf")
return self._obtain_entry_api(search_text, name, output_format=output_format)
return self._obtain_entry_web(search_text, name, output_format=output_format)

def smiles_to_pdb(self, smiles: str) -> NoReturn:
def smiles_to_pdb(self, smiles: str):
"""
Obtain pdf file based on SMILES code.
Expand Down

0 comments on commit 6f9d3d5

Please sign in to comment.