From 6d2d5d45cdeaa92fdbb8049f357b56d0e471a958 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 11 Oct 2024 17:29:13 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/stpipe/step.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stpipe/step.py b/src/stpipe/step.py index 2c39fe8d..f134e694 100644 --- a/src/stpipe/step.py +++ b/src/stpipe/step.py @@ -39,12 +39,12 @@ from .utilities import _not_set - class NoCRDSParametersWarning(UserWarning): """ Warning shown when a Step with CRDS parameters is run without fetching those parameters. """ + pass @@ -55,7 +55,7 @@ def _warn_missing_crds_pars(step): "CRDS parameters use " "Step.from_config_section(Step.build_config(input)[0]) or " "use Step.call which will create and use the instance in one method.", - NoCRDSParametersWarning + NoCRDSParametersWarning, )