Skip to content

Commit 3e91c81

Browse files
committed
Black reformatted
1 parent 5eca37a commit 3e91c81

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

cli_helpers/tabular_output/preprocessors.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,11 @@ def escape_newlines(data, headers, **_):
125125
return (
126126
(
127127
[
128-
v.replace("\r", r"\r").replace("\n", r"\n")
129-
if isinstance(v, text_type)
130-
else v
128+
(
129+
v.replace("\r", r"\r").replace("\n", r"\n")
130+
if isinstance(v, text_type)
131+
else v
132+
)
131133
for v in row
132134
]
133135
for row in data

0 commit comments

Comments
 (0)