From 98dcaee7f9563b37ad28f67b687873fe8f0e0585 Mon Sep 17 00:00:00 2001 From: Andy Salnikov Date: Wed, 12 Jul 2023 13:12:06 -0700 Subject: [PATCH] Fix noqa code --- python/lsst/pipe/base/connections.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/pipe/base/connections.py b/python/lsst/pipe/base/connections.py index ab10d938..1d9195c7 100644 --- a/python/lsst/pipe/base/connections.py +++ b/python/lsst/pipe/base/connections.py @@ -172,7 +172,7 @@ class PipelineTaskConnectionsMetaclass(type): See `inputs` for additional information. """ - def __prepare__(name, bases, **kwargs): # noqa: 805 + def __prepare__(name, bases, **kwargs): # noqa: N804 # Create an instance of our special dict to catch and track all # variables that are instances of connectionTypes.BaseConnection # Copy any existing connections from a parent class