Commit fea0198
committed
fix(E501) Break long strings in logger.warning calls
Fixes two E501 (line-too-long) errors by breaking string literals
across multiple lines using implicit string concatenation:
- docs/_ext/aafig.py:134
- src/tmuxp/workspace/builder.py:421
All checks now pass:
✅ ruff check: All checks passed!
✅ mypy: Success
✅ pytest: 204 passed, 3 skipped1 parent 7e1ed5f commit fea0198
2 files changed
+8
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
131 | 131 | | |
132 | 132 | | |
133 | 133 | | |
134 | | - | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
135 | 138 | | |
136 | 139 | | |
137 | 140 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
418 | 418 | | |
419 | 419 | | |
420 | 420 | | |
421 | | - | |
| 421 | + | |
| 422 | + | |
| 423 | + | |
| 424 | + | |
422 | 425 | | |
423 | 426 | | |
424 | 427 | | |
| |||
0 commit comments