From 87c90b7ba0dc2d72c938692a63462250cdb935ee Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 17:45:35 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- snakemake_helper/vr_experiment.py | 1 + tests/test_vr_experiment.py | 1 + 2 files changed, 2 insertions(+) diff --git a/snakemake_helper/vr_experiment.py b/snakemake_helper/vr_experiment.py index a337195..5bf485d 100644 --- a/snakemake_helper/vr_experiment.py +++ b/snakemake_helper/vr_experiment.py @@ -3,6 +3,7 @@ The main functionality for this module lies in the VRExperiment class, which represents all the parameter sets which are being tested. """ + from collections.abc import Iterable, Sequence from itertools import product from pathlib import Path diff --git a/tests/test_vr_experiment.py b/tests/test_vr_experiment.py index d175ba6..0322abd 100644 --- a/tests/test_vr_experiment.py +++ b/tests/test_vr_experiment.py @@ -1,4 +1,5 @@ """Tests for the VRExperiment class.""" + from itertools import product from pathlib import Path from typing import Any