From 758e7a316cdcfb5624f73e370f329f591c110166 Mon Sep 17 00:00:00 2001 From: Miki Bonacci Date: Fri, 13 Dec 2024 17:42:14 +0100 Subject: [PATCH] Fixing pre-commit problem --- src/aiida/orm/nodes/data/structure.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/aiida/orm/nodes/data/structure.py b/src/aiida/orm/nodes/data/structure.py index cac7f48a2..e4988c21d 100644 --- a/src/aiida/orm/nodes/data/structure.py +++ b/src/aiida/orm/nodes/data/structure.py @@ -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: