lsst-pipe-base 29.0.0rc1__py3-none-any.whl → 29.2025.1100__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lsst/pipe/base/_datasetQueryConstraints.py +1 -1
- lsst/pipe/base/all_dimensions_quantum_graph_builder.py +638 -357
- lsst/pipe/base/pipeline_graph/visualization/_mermaid.py +151 -24
- lsst/pipe/base/prerequisite_helpers.py +1 -1
- lsst/pipe/base/quantum_graph_builder.py +3 -3
- lsst/pipe/base/tests/mocks/_data_id_match.py +4 -0
- lsst/pipe/base/version.py +1 -1
- {lsst_pipe_base-29.0.0rc1.dist-info → lsst_pipe_base-29.2025.1100.dist-info}/METADATA +3 -1
- {lsst_pipe_base-29.0.0rc1.dist-info → lsst_pipe_base-29.2025.1100.dist-info}/RECORD +17 -17
- {lsst_pipe_base-29.0.0rc1.dist-info → lsst_pipe_base-29.2025.1100.dist-info}/WHEEL +1 -1
- {lsst_pipe_base-29.0.0rc1.dist-info → lsst_pipe_base-29.2025.1100.dist-info}/COPYRIGHT +0 -0
- {lsst_pipe_base-29.0.0rc1.dist-info → lsst_pipe_base-29.2025.1100.dist-info}/LICENSE +0 -0
- {lsst_pipe_base-29.0.0rc1.dist-info → lsst_pipe_base-29.2025.1100.dist-info}/bsd_license.txt +0 -0
- {lsst_pipe_base-29.0.0rc1.dist-info → lsst_pipe_base-29.2025.1100.dist-info}/entry_points.txt +0 -0
- {lsst_pipe_base-29.0.0rc1.dist-info → lsst_pipe_base-29.2025.1100.dist-info}/gpl-v3.0.txt +0 -0
- {lsst_pipe_base-29.0.0rc1.dist-info → lsst_pipe_base-29.2025.1100.dist-info}/top_level.txt +0 -0
- {lsst_pipe_base-29.0.0rc1.dist-info → lsst_pipe_base-29.2025.1100.dist-info}/zip-safe +0 -0
|
@@ -117,7 +117,7 @@ if sys.version_info.minor < 12:
|
|
|
117
117
|
else:
|
|
118
118
|
|
|
119
119
|
class MetaMeta(type(Protocol)):
|
|
120
|
-
def __init__(cls, *args, **kwargs):
|
|
120
|
+
def __init__(cls, *args, **kwargs): # noqa: N805
|
|
121
121
|
# Note: this prepends an *extra* cls to type's argument list
|
|
122
122
|
return super().__init__(cls, *args, **kwargs)
|
|
123
123
|
|