@@ -991,7 +991,10 @@ def test_filter_candidates_for_monitors():
991991
992992 initial_guide_cands = get_guide_candidates (stars = stars , ** args )
993993 guide_with_mons = get_guide_catalog (
994- stars = stars , initial_guide_cands = initial_guide_cands .to_table (), mons = mons , ** args
994+ stars = stars ,
995+ initial_guide_cands = initial_guide_cands .to_table (),
996+ mons = mons ,
997+ ** args ,
995998 )
996999 # The monitor window with MON_TRACK should exclude the star
9971000 assert 1001 not in guide_with_mons .cand_guides ["id" ]
@@ -1097,7 +1100,10 @@ def test_initial_guide_candidate_reuse_with_fids():
10971100 initial_guide_cands = get_guide_candidates (stars = stars , ** kwargs )
10981101
10991102 guides_with_fids = get_guide_catalog (
1100- stars = stars , initial_guide_cands = initial_guide_cands .to_table (), fids = fids , ** kwargs
1103+ stars = stars ,
1104+ initial_guide_cands = initial_guide_cands .to_table (),
1105+ fids = fids ,
1106+ ** kwargs ,
11011107 )
11021108 assert 1001 not in guides_with_fids ["id" ]
11031109
@@ -1140,7 +1146,9 @@ def test_process_include_ids_columns():
11401146 include_ids_guide = [999999 ], # Force include the faint star
11411147 )
11421148
1143- guides = get_guide_catalog (stars = stars , initial_guide_cands = guide_cands .to_table (), ** kwargs )
1149+ guides = get_guide_catalog (
1150+ stars = stars , initial_guide_cands = guide_cands .to_table (), ** kwargs
1151+ )
11441152
11451153 # Verify the star was included
11461154 assert 999999 in guides .cand_guides ["id" ]
0 commit comments