Skip to content

Commit 55cd952

Browse files
committed
Apply code formatter
1 parent 3f294ad commit 55cd952

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import pandas as pd
21
from pathlib import Path
32

3+
import pandas as pd
44
import pytest
55
from dask.distributed import Client, LocalCluster
66

tests/data/generate_data.ipynb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
{
1212
"cell_type": "code",
13-
"execution_count": 3,
13+
"execution_count": null,
1414
"id": "f850dffe",
1515
"metadata": {},
1616
"outputs": [],
@@ -240,7 +240,7 @@
240240
},
241241
{
242242
"cell_type": "code",
243-
"execution_count": 4,
243+
"execution_count": null,
244244
"id": "24752342",
245245
"metadata": {},
246246
"outputs": [],
@@ -251,7 +251,7 @@
251251
},
252252
{
253253
"cell_type": "code",
254-
"execution_count": 5,
254+
"execution_count": null,
255255
"id": "992d3c1d",
256256
"metadata": {},
257257
"outputs": [],
@@ -262,7 +262,7 @@
262262
},
263263
{
264264
"cell_type": "code",
265-
"execution_count": 14,
265+
"execution_count": null,
266266
"id": "9d02e5e2",
267267
"metadata": {},
268268
"outputs": [],
@@ -275,10 +275,10 @@
275275
" matches = []\n",
276276
"\n",
277277
" # Calculate separation for each pair of objects\n",
278-
" coords_ps1 = SkyCoord(row[\"raMean\"], row[\"decMean\"], unit='deg')\n",
278+
" coords_ps1 = SkyCoord(row[\"raMean\"], row[\"decMean\"], unit=\"deg\")\n",
279279
" delve_ra = small_cone_delve_df[\"RA\"].values\n",
280280
" delve_dec = small_cone_delve_df[\"DEC\"].values\n",
281-
" coords_delve = SkyCoord(ra=delve_ra, dec=delve_dec, unit='deg')\n",
281+
" coords_delve = SkyCoord(ra=delve_ra, dec=delve_dec, unit=\"deg\")\n",
282282
" dists_arcsec = coords_ps1.separation(coords_delve).arcsec\n",
283283
"\n",
284284
" # Calculate magnitude difference for each object on the right\n",

tests/lsdb_crossmatch/test_mag_difference_crossmatch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def test_mag_difference_crossmatch(m67_delve_small_dir, m67_ps1_small_dir, xmatc
1616
algorithm=MyCrossmatchAlgorithm,
1717
radius_arcsec=3600,
1818
left_mag_col="rMeanPSFMag",
19-
right_mag_col="MAG_PSF_R"
19+
right_mag_col="MAG_PSF_R",
2020
).compute()
2121

2222
assert isinstance(xmatched, npd.NestedFrame)

0 commit comments

Comments
 (0)