-SIMPLE_CASES: List[str] = [
- "attribute_access_on_number_literals",
- "beginning_backslash",
- "bracketmatch",
- "class_blank_parentheses",
- "class_methods_new_line",
- "collections",
- "comments",
- "comments2",
- "comments3",
- "comments4",
- "comments5",
- "comments6",
- "comments_non_breaking_space",
- "comment_after_escaped_newline",
- "composition",
- "composition_no_trailing_comma",
- "docstring",
- "empty_lines",
- "expression",
- "fmtonoff",
- "fmtonoff2",
- "fmtonoff3",
- "fmtonoff4",
- "fmtskip",
- "fmtskip2",
- "fmtskip3",
- "fmtskip4",
- "fmtskip5",
- "fmtskip6",
- "fmtskip7",
- "fstring",
- "function",
- "function2",
- "function_trailing_comma",
- "import_spacing",
- "power_op_spacing",
- "remove_parens",
- "slices",
- "string_prefixes",
- "torture",
- "trailing_comma_optional_parens1",
- "trailing_comma_optional_parens2",
- "trailing_comma_optional_parens3",
- "tricky_unicode_symbols",
- "tupleassign",
-]
-
-PY310_CASES: List[str] = [
- "starred_for_target",
- "pattern_matching_simple",
- "pattern_matching_complex",
- "pattern_matching_extras",
- "pattern_matching_style",
- "pattern_matching_generic",
- "parenthesized_context_managers",
-]
-
-PY311_CASES: List[str] = [
- "pep_654",
- "pep_654_style",
-]
-
-PREVIEW_CASES: List[str] = [
- # string processing
- "cantfit",
- "comments7",
- "comments8",
- "long_strings",
- "long_strings__edge_case",
- "long_strings__regression",
- "percent_precedence",
- "remove_except_parens",
- "remove_for_brackets",
- "one_element_subscript",
- "remove_await_parens",
- "return_annotation_brackets",
-]
-