Merge pull request #9357 from GergelyKalmar/remove-unnecessary-newline
This commit is contained in:
commit
482b858675
1
AUTHORS
1
AUTHORS
|
@ -129,6 +129,7 @@ Garvit Shubham
|
|||
Gene Wood
|
||||
George Kussumoto
|
||||
Georgy Dyuldin
|
||||
Gergely Kalmár
|
||||
Gleb Nikonorov
|
||||
Graeme Smecher
|
||||
Graham Horler
|
||||
|
|
|
@ -76,7 +76,9 @@ class BaseReport:
|
|||
|
||||
def toterminal(self, out: TerminalWriter) -> None:
|
||||
if hasattr(self, "node"):
|
||||
out.line(getworkerinfoline(self.node))
|
||||
worker_info = getworkerinfoline(self.node)
|
||||
if worker_info:
|
||||
out.line(worker_info)
|
||||
|
||||
longrepr = self.longrepr
|
||||
if longrepr is None:
|
||||
|
|
Loading…
Reference in New Issue