Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions python/lsst/pipe/base/simple_pipeline_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

__all__ = ("SimplePipelineExecutor",)

import os
from collections.abc import Iterable, Iterator, Mapping
from typing import Any

Expand Down Expand Up @@ -507,7 +506,7 @@ def use_local_butler(
quantum graph or their original `~lsst.daf.butler.CollectionType.RUN`
collections.
"""
if not os.path.exists(root):
if not Butler.has_repo_config(root):
Butler.makeRepo(root)
out_butler = Butler.from_config(root, writeable=True)

Expand Down
Loading