Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Irfan Alibay <[email protected]>
  • Loading branch information
atravitz and IAlibay authored Nov 18, 2024
1 parent c66f14c commit 5dda4c0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gufe/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from .transformations import Transformation



class AlchemicalNetwork(GufeTokenizable):
_edges: frozenset[Transformation]
_nodes: frozenset[ChemicalSystem]
Expand Down Expand Up @@ -118,7 +117,7 @@ def to_graphml(self) -> str:
raise NotImplementedError

@classmethod
def from_graphml(cls, str):
def from_graphml(cls, str) -> Self:
"""Currently not implemented"""
raise NotImplementedError

Expand Down

0 comments on commit 5dda4c0

Please sign in to comment.