From 3be5ca382641176a6daa63119a46587ce79b7903 Mon Sep 17 00:00:00 2001 From: kmlefran Date: Mon, 11 Sep 2023 13:16:02 -0400 Subject: [PATCH] Precommit fixes --- aiida_aimall/parsers.py | 2 +- conftest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aiida_aimall/parsers.py b/aiida_aimall/parsers.py index 4c077e1..3107107 100644 --- a/aiida_aimall/parsers.py +++ b/aiida_aimall/parsers.py @@ -4,7 +4,7 @@ Register parsers via the "aiida.parsers" entry point in setup.json. """ -from subproptools import qtaimExtract as qt +from subproptools import qtaimExtract as qt # pylint: disable=import-error from aiida.common import exceptions from aiida.orm import Dict, SinglefileData diff --git a/conftest.py b/conftest.py index 3a0ab1f..3fbee61 100644 --- a/conftest.py +++ b/conftest.py @@ -13,6 +13,6 @@ def clear_database_auto(clear_database): # pylint: disable=unused-argument def aimall_code(aiida_local_code_factory): """Get a aimall code.""" return aiida_local_code_factory( - executable="/Applications/AIMAll/AIMQB.app/Contents/MacOS/aimqb", + executable="aimqb", entry_point="aimall", )