Skip to content

Commit 15cafc3

Browse files
committed
setting default method to column
1 parent e192e28 commit 15cafc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tia/rlab/table.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def check_and_append(*args, **kwargs):
6060
MillionsFormatter = pad_positive_wrapper(fmt.new_millions_formatter(nan='-'))
6161
BillionsFormatter = pad_positive_wrapper(fmt.new_billions_formatter(nan='-'))
6262
# Don't attempt to pad
63-
DynamicNumberFormatter = fmt.DynamicNumberFormat(nan='-', pcts=1, trunc_dot_zeros=1)
63+
DynamicNumberFormatter = fmt.DynamicNumberFormat(method='col', nan='-', pcts=1, trunc_dot_zeros=1)
6464

6565
DollarCentsFormatter = pad_positive_wrapper(fmt.new_float_formatter(prefix='$', nan='-'))
6666
DollarFormatter = pad_positive_wrapper(fmt.new_int_formatter(prefix='$', nan='-'))

0 commit comments

Comments
 (0)