X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/ff53fc1b97b98075f92fcc954ed81b9252e7c9c1..d7a28dd78631fb962da95fb2d2de0e18ca6754a4:/src/black/mode.py?ds=sidebyside diff --git a/src/black/mode.py b/src/black/mode.py index c9a4c2b..0511676 100644 --- a/src/black/mode.py +++ b/src/black/mode.py @@ -154,7 +154,10 @@ class Preview(Enum): """Individual preview style features.""" add_trailing_comma_consistently = auto() + blank_line_after_nested_stub_class = auto() hex_codes_in_unicode_sequences = auto() + improved_async_statements_handling = auto() + multiline_string_handling = auto() prefer_splitting_right_hand_side_of_assignments = auto() # NOTE: string_processing requires wrap_long_dict_values_in_parens # for https://github.com/psf/black/issues/3117 to be fixed.