diff --git a/crates/ruff_linter/src/rules/flake8_errmsg/rules/string_in_exception.rs b/crates/ruff_linter/src/rules/flake8_errmsg/rules/string_in_exception.rs index a7298ea73c..60da28d45a 100644 --- a/crates/ruff_linter/src/rules/flake8_errmsg/rules/string_in_exception.rs +++ b/crates/ruff_linter/src/rules/flake8_errmsg/rules/string_in_exception.rs @@ -97,6 +97,7 @@ impl Violation for RawStringInException { /// /// Which will produce a traceback like: /// ```console +/// Traceback (most recent call last): /// File "tmp.py", line 3, in /// raise RuntimeError(msg) /// RuntimeError: 'Some value' is incorrect