Skip to content

Commit

Permalink
removed debugging prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Nschanche committed Feb 1, 2024
1 parent 82c2bfc commit 3d6f5ef
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/newlk_search/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def __repr__(self, html=False):
out = out.assign(author=out['author'].apply(lambda x: f'<a href="{AUTHOR_LINKS[x]}">{x}</a>' if x in AUTHOR_LINKS.keys() else x))
#out = HTML(out.to_html(escape=False, max_rows=10))

return out.to_string(max_rows=10)
return out.to_string(max_rows=20)


def _repr_html_(self):
Expand Down Expand Up @@ -1247,11 +1247,7 @@ def _filter_products(
products : pandas dataframe object
Masked astropy table containing desired data products
"""
print(f"filetype: {filetype}")
print(f"campaign: {campaign}")
print(f"quarter: {quarter}")
print(f"exptime: {exptime}")
print(f"provenance: {provenance_name}")

if provenance_name is None: # apply all filters
provenance_lower = ("kepler", "k2", "spoc")
else:
Expand Down

0 comments on commit 3d6f5ef

Please sign in to comment.