Skip to content

Commit

Permalink
Merge 99b4c4a into abf3eed
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Jan 10, 2023
2 parents abf3eed + 99b4c4a commit 81c002c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pymatgen/analysis/diffusion/neb/full_path_mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def unique_hops(self):
return {d["hop_label"]: d for u, v, d in ihop_data}

@classmethod
def with_base_structure(cls, base_structure: Structure, m_graph: StructureGraph, **kwargs) -> "MigrationGraph":
def with_base_structure(cls, base_structure: Structure, m_graph: StructureGraph, **kwargs) -> MigrationGraph:
"""
Args:
base_structure: base framework structure that does not contain any
Expand All @@ -174,7 +174,7 @@ def with_base_structure(cls, base_structure: Structure, m_graph: StructureGraph,
@classmethod
def with_local_env_strategy(
cls, structure: Structure, migrating_specie: str, nn: NearNeighbors, **kwargs
) -> "MigrationGraph":
) -> MigrationGraph:
"""
Using a specific nn strategy to get the connectivity graph between all the migrating ion sites.
Args:
Expand All @@ -191,7 +191,7 @@ def with_local_env_strategy(
@classmethod
def with_distance(
cls, structure: Structure, migrating_specie: str, max_distance: float, **kwargs
) -> "MigrationGraph":
) -> MigrationGraph:
"""
Using a specific nn strategy to get the connectivity graph between all the migrating ion sites.
Args:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pymatgen==2022.11.7
pymatgen==2023.1.9
joblib==1.2.0
ase==3.22.1

0 comments on commit 81c002c

Please sign in to comment.