Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
munrojm committed Dec 21, 2021
1 parent 7439ff4 commit 8791b61
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/mp_api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ def get_pourbaix_entries(

return pbx_entries

@lru_cache
@lru_cache()
def get_ion_reference_data(self) -> List[Dict]:
"""
Download aqueous ion reference data used in the construction of Pourbaix diagrams.
Expand Down Expand Up @@ -575,7 +575,9 @@ def get_ion_reference_data(self) -> List[Dict]:

return ion_data

def get_ion_reference_data_for_chemsys(self, chemsys: Union[str, List]) -> List[Dict]:
def get_ion_reference_data_for_chemsys(
self, chemsys: Union[str, List]
) -> List[Dict]:
"""
Download aqueous ion reference data used in the construction of Pourbaix diagrams.
Expand Down

0 comments on commit 8791b61

Please sign in to comment.