Skip to content

Commit 015fade

Browse files
fix pep8
1 parent c4327b7 commit 015fade

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pandas/io/formats/format.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -254,10 +254,12 @@ def _get_formatted_values(self):
254254
values_to_format = self.tr_series._formatting_values()
255255
if self.index:
256256
return format_array(values_to_format, None,
257-
float_format=self.float_format, na_rep=self.na_rep)
257+
float_format=self.float_format,
258+
na_rep=self.na_rep)
258259
else:
259260
return format_array(values_to_format, None,
260-
float_format=self.float_format, na_rep=self.na_rep,
261+
float_format=self.float_format,
262+
na_rep=self.na_rep,
261263
leading_space=False)
262264

263265
def to_string(self):

0 commit comments

Comments
 (0)