From ed66a7d71128246b4fc84c07db6574b8546738f0 Mon Sep 17 00:00:00 2001 From: Shivansh-007 Date: Tue, 15 Mar 2022 16:31:42 +0530 Subject: [PATCH] Remove power hugging formatting from preview It is falsely placed in preview features and always formats the power operators, it was added in #2789 but there is no check for formatting added along with it. --- src/black/mode.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/black/mode.py b/src/black/mode.py index 455ed36e27e..1dcaef3d8ec 100644 --- a/src/black/mode.py +++ b/src/black/mode.py @@ -127,7 +127,6 @@ class Preview(Enum): """Individual preview style features.""" string_processing = auto() - hug_simple_powers = auto() class Deprecated(UserWarning):