Skip to content

Commit 590bfa3

Browse files
authored
Apply suggestions from code review
1 parent df2a9b5 commit 590bfa3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ipyparallel/client/client.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,7 @@ def _plaintext(self) -> str:
165165
# add newline for multiline reprs
166166
text_out = '\n' + text_out
167167

168-
return (
169-
f"Out[{self.metadata['engine_id']}:{self.execution_count}]: {text_out}",
170-
)
168+
return f"Out[{self.metadata['engine_id']}:{self.execution_count}]: {text_out}"
171169

172170
def _repr_pretty_(self, p, cycle):
173171
p.text(self._plaintext())

0 commit comments

Comments
 (0)