Skip to content

Commit

Permalink
Fixing pre-commit problem
Browse files Browse the repository at this point in the history
  • Loading branch information
mikibonacci committed Dec 13, 2024
1 parent ebf1f4f commit 758e7a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/aiida/orm/nodes/data/structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ def has_pymatgen():


def has_atomistic() -> bool:
""":return: True if the StructureData and StructureDataMutable from aiida-atomistic module can be imported, False otherwise."""
""":return: True if the StructureData and StructureDataMutable from
aiida-atomistic module can be imported, False otherwise.
"""
try:
import aiida_atomistic # noqa: F401
except ImportError:
Expand Down

0 comments on commit 758e7a3

Please sign in to comment.