Skip to content

Commit

Permalink
MAINT: update to use None instead of -1 to bypass truncation (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregcaporaso authored May 2, 2024
1 parent 8bed543 commit 21d46cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion q2templates/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def df_to_html(df, border="0", classes=('table', 'table-striped',
.. [2] https://github.com/pandas-dev/pandas/issues/1852
"""
with pd.option_context('display.max_colwidth', -1):
with pd.option_context('display.max_colwidth', None):
return df.to_html(border=border, classes=classes, **kwargs)


Expand Down

0 comments on commit 21d46cb

Please sign in to comment.