We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39317cd commit f161fe6Copy full SHA for f161fe6
1 file changed
src/black/linegen.py
@@ -295,8 +295,8 @@ def visit_STRING(self, leaf: Leaf) -> Iterator[Line]:
295
# indentation of those changes the AST representation of the code.
296
if Preview.normalize_docstring_quotes_and_prefixes_properly in self.mode:
297
# There was a bug where --skip-string-normalization wouldn't stop us
298
- # from normalizing docstring prefixes. To maintain stability, we can only
299
- # address this buggy behaviour while the preview style is enabled.
+ # from normalizing docstring prefixes. To maintain stability, we can
+ # only address this buggy behaviour while the preview style is enabled.
300
if self.mode.string_normalization:
301
docstring = normalize_string_prefix(leaf.value)
302
# visit_default() does handle string normalization for us, but
0 commit comments