We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd816d7 commit 0b15545Copy full SHA for 0b15545
gitbug/bug.py
@@ -346,8 +346,10 @@ def info(self) -> str:
346
```
347
348
### Failing Tests
349
-""" + "\n".join(f"- {test['classname']}#{test['name']}\n\t- {test['results'][0]['type']}\n\t- {test['results'][0]['message']}" for test in failing_tests)
350
-
+""" + "\n".join(
+ f"- {test['classname']}#{test['name']}\n\t- {test['results'][0]['type']}\n\t- {test['results'][0]['message']}"
351
+ for test in failing_tests
352
+ )
353
354
def __str__(self) -> str:
355
return self.bid
0 commit comments