Skip to content

Commit

Permalink
flake
Browse files Browse the repository at this point in the history
  • Loading branch information
keflavich committed Dec 10, 2024
1 parent 65c7ec2 commit 536a8e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions aces/analysis/latex_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ def make_latex_table(savename='continuum_data_summary'):
(np.char.find(tbl['filename'], 'X15a0_X178') == -1) |
(np.char.find(tbl['filename'], 'obsolete') == -1) #| False # TODO: check for more
) & (
(np.char.find(tbl['spws'], 'v1') == -1) &
~(tbl['pbcor']) &
(tbl['array'] == '12M'))
)
(np.char.find(tbl['spws'], 'v1') == -1) &
~(tbl['pbcor']) &
(tbl['array'] == '12M'))
) # noqa

tbl = tbl[good]
assert len(tbl) > 0
Expand Down

0 comments on commit 536a8e2

Please sign in to comment.