Skip to content

Commit

Permalink
Merge pull request #238 from bgurney-rh/black-24
Browse files Browse the repository at this point in the history
Reformat for black 24.1.1
  • Loading branch information
mulkieran authored Feb 12, 2024
2 parents e010538 + 7ca6d2c commit d68e1a2
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 d68e1a2

Please sign in to comment.