Skip to content

Commit

Permalink
Allow custom charge / WBO methods (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBoothroyd authored Jan 24, 2022
1 parent 9b6ecb8 commit fb2f086
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nagl/storage/_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
_logger = logging.getLogger(__name__)


ChargeMethod = Literal["am1", "am1bcc"]
WBOMethod = Literal["am1"]
ChargeMethod = Union[Literal["am1", "am1bcc"], str]
WBOMethod = Union[Literal["am1"], str]

DBQueryResult = Tuple[
int, # DBMoleculeRecord.id
Expand Down

0 comments on commit fb2f086

Please sign in to comment.