Skip to content

Commit

Permalink
[Will squash] Update bin.src/make_latiss_export.py
Browse files Browse the repository at this point in the history
Co-authored-by: Krzysztof Findeisen <kfindeisen@users.noreply.github.com>
  • Loading branch information
hsinfang and kfindeisen committed Feb 16, 2024
1 parent 1dde00f commit 67f3ed9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bin.src/make_latiss_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ def _export_for_copy(butler, target_butler):
)
contents.saveDatasets(records)

for refcat in ("atlas_refcat2_20220201", "gaia_dr3_20230707"):
logging.debug(f"Selecting refcats datasets {refcat}")
records = _filter_datasets(
butler, target_butler, datasetType=refcat, collections="refcats*"
)
contents.saveDatasets(records)
refcats={"atlas_refcat2_20220201", "gaia_dr3_20230707"}

Check failure on line 100 in bin.src/make_latiss_export.py

View workflow job for this annotation

GitHub Actions / call-workflow / lint

E225

missing whitespace around operator
logging.debug(f"Selecting refcats datasets {refcats}")
records = _filter_datasets(
butler, target_butler, datasetType=refcats, collections="refcats*"
)
contents.saveDatasets(records)

logging.debug("Selecting skymaps dataset")
records = _filter_datasets(
Expand Down

0 comments on commit 67f3ed9

Please sign in to comment.