From 1e034b35e3d87b4e9641f23add5a69b639d3c9c9 Mon Sep 17 00:00:00 2001 From: Sebastian Harenbrock <1812261+harenbrs@users.noreply.github.com> Date: Thu, 2 Apr 2020 11:57:50 +0100 Subject: [PATCH] Always skip string normalisation --- black.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/black.py b/black.py index f5c0d91..93610dc 100644 --- a/black.py +++ b/black.py @@ -440,7 +440,7 @@ def main( target_versions=versions, line_length=line_length, is_pyi=pyi, - string_normalization=not skip_string_normalization, + string_normalization=False, ) if config and verbose: out(f"Using configuration from {config}.", bold=False, fg="blue")