Skip to content

Commit

Permalink
Update search.py
Browse files Browse the repository at this point in the history
fixed repr (maybe)
  • Loading branch information
Nschanche authored Feb 5, 2024
1 parent 0ae84c0 commit b6e61a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/newlk_search/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def __repr__(self, html=False):
#out = HTML(out.to_html(escape=False, max_rows=10))


return (len_str + out.to_string(max_rows=20))
return out.to_string(max_rows=20)


def _repr_html_(self):
Expand Down Expand Up @@ -1402,4 +1402,4 @@ def _tess_sector2exptime(sector):
if (sector >- 27) and (sector < 56):
return 600
if (sector >= 56):
return 200
return 200

0 comments on commit b6e61a1

Please sign in to comment.