summaryrefslogtreecommitdiffstats
path: root/cli_helpers/tabular_output/preprocessors.py
diff options
context:
space:
mode:
Diffstat (limited to 'cli_helpers/tabular_output/preprocessors.py')
-rw-r--r--cli_helpers/tabular_output/preprocessors.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/cli_helpers/tabular_output/preprocessors.py b/cli_helpers/tabular_output/preprocessors.py
index 5d91126..8342d67 100644
--- a/cli_helpers/tabular_output/preprocessors.py
+++ b/cli_helpers/tabular_output/preprocessors.py
@@ -4,7 +4,7 @@
import string
from cli_helpers import utils
-from cli_helpers.compat import text_type, int_types, float_types, HAS_PYGMENTS
+from cli_helpers.compat import text_type, int_types, float_types, HAS_PYGMENTS, Token
def truncate_string(
@@ -58,9 +58,9 @@ def override_missing_value(
data,
headers,
style=None,
- missing_value_token="Token.Output.Null",
+ missing_value_token=Token.Output.Null,
missing_value="",
- **_
+ **_,
):
"""Override missing values in the *data* with *missing_value*.
@@ -248,10 +248,10 @@ def style_output(
data,
headers,
style=None,
- header_token="Token.Output.Header",
- odd_row_token="Token.Output.OddRow",
- even_row_token="Token.Output.EvenRow",
- **_
+ header_token=Token.Output.Header,
+ odd_row_token=Token.Output.OddRow,
+ even_row_token=Token.Output.EvenRow,
+ **_,
):
"""Style the *data* and *headers* (e.g. bold, italic, and colors)