Commit 7c4d9a1
Fix lint W1404 implicit-str-concat in LoadAuth.get_tok warning
CI saltpylint flagged `salt/auth/__init__.py:253` with
`W1404(implicit-str-concat)`. The two adjacent string literals on
that line are the result of black collapsing what was originally a
two-line string onto a single line, which saltpylint reads as a
missing comma. Merge them into a single string literal; the message
remains under 88 columns so black leaves it alone.
Refs: #690731 parent 1f53a56 commit 7c4d9a1
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
250 | 250 | | |
251 | 251 | | |
252 | 252 | | |
253 | | - | |
| 253 | + | |
254 | 254 | | |
255 | 255 | | |
256 | 256 | | |
| |||
0 commit comments