Skip to content

Commit 52cf5bc

Browse files
PEP8 Changes
1 parent ce8c0da commit 52cf5bc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/io/formats/format.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -948,7 +948,6 @@ def _format(x):
948948
is_float_type = lib.map_infer(vals, is_float) & notna(vals)
949949
leading_space = is_float_type.any()
950950

951-
adj = _get_adjustment()
952951
conf_max = get_option("display.max_colwidth")
953952

954953
fmt_values = []
@@ -959,7 +958,7 @@ def _format(x):
959958
fmt_values.append(float_format(v))
960959
elif conf_max is not None and (type(v) is compat.binary_type
961960
or type(v) is compat.text_type):
962-
fmt_values.append(u' {v}'.format(v=_format(v[:conf_max*5])))
961+
fmt_values.append(u' {v}'.format(v=_format(v[:conf_max * 5])))
963962
else:
964963
fmt_values.append(u' {v}'.format(v=_format(v)))
965964

0 commit comments

Comments
 (0)