From 456ac9e162ce28ba9dddd1e947234fd1f24911c3 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sun, 24 Sep 2023 19:32:46 -0700 Subject: [PATCH] refactor: remove unnecessary `pass` (#972) The `pass` statement used here is not necessary. You can safely remove this. --------- Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com> --- tests/recipes/dftb_recipes/test_dftb_recipes.py | 2 -- tests/recipes/tblite_recipes/test_tblite_recipes.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/tests/recipes/dftb_recipes/test_dftb_recipes.py b/tests/recipes/dftb_recipes/test_dftb_recipes.py index 9beb7e0322..241c8ef8a8 100644 --- a/tests/recipes/dftb_recipes/test_dftb_recipes.py +++ b/tests/recipes/dftb_recipes/test_dftb_recipes.py @@ -120,8 +120,6 @@ def test_relax_job(tmpdir): def test_unique_workdir(tmpdir): - pass - SETTINGS.CREATE_UNIQUE_WORKDIR = True test_static_job(tmpdir) test_relax_job(tmpdir) diff --git a/tests/recipes/tblite_recipes/test_tblite_recipes.py b/tests/recipes/tblite_recipes/test_tblite_recipes.py index 44753431a3..cc3c5b79ca 100644 --- a/tests/recipes/tblite_recipes/test_tblite_recipes.py +++ b/tests/recipes/tblite_recipes/test_tblite_recipes.py @@ -150,8 +150,6 @@ def test_freq_job(tmpdir): def test_unique_workdir(tmpdir): - pass - SETTINGS.CREATE_UNIQUE_WORKDIR = True test_static_job(tmpdir) test_relax_job(tmpdir)