File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 34
34
35
35
- name : Check formatting
36
36
run : |
37
- black --check .
37
+ black --check --experimental-string-processing .
Original file line number Diff line number Diff line change @@ -793,9 +793,10 @@ def visit(self, node):
793
793
794
794
B904 = Error (
795
795
message = (
796
- "B904 Within an `except` clause, raise exceptions with `raise ... from err` "
797
- "or `raise ... from None` to distinguish them from errors in exception handling. "
798
- "See https://docs.python.org/3/tutorial/errors.html#exception-chaining for details."
796
+ "B904 Within an `except` clause, raise exceptions with `raise ... from err` or"
797
+ " `raise ... from None` to distinguish them from errors in exception handling. "
798
+ " See https://docs.python.org/3/tutorial/errors.html#exception-chaining for"
799
+ " details."
799
800
)
800
801
)
801
802
You can’t perform that action at this time.
0 commit comments