Skip to content

Commit

Permalink
Reformat for black 24.1.1
Browse files Browse the repository at this point in the history
Signed-off-by: Bryan Gurney <[email protected]>
  • Loading branch information
bgurney-rh committed Feb 12, 2024
1 parent e010538 commit 7ca6d2c
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions testlib/infra.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,10 +275,15 @@ def tearDown(self):
self.assertEqual(
self.trace.returncode,
0,
stderrdata.decode("utf-8")
if len(msg) == 0
else (
"Error from monitor_dbus_signals: " + os.linesep + os.linesep + msg
(
stderrdata.decode("utf-8")
if len(msg) == 0
else (
"Error from monitor_dbus_signals: "
+ os.linesep
+ os.linesep
+ msg
)
),
)

Expand Down

0 comments on commit 7ca6d2c

Please sign in to comment.