From f0fa8a66f9f67ab0b64a8d11a1f529e24b1106e1 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Tue, 15 Aug 2023 17:53:39 +0100 Subject: [PATCH] Enable E115 (Expected an indented block (comment)) --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 923a1347b..e5afc44a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -294,6 +294,7 @@ select = [ "E112", # Expected an indented block "E113", # Unexpected indentation "E114", # Indentation is not a multiple of {indent_size} (comment) + "E115", # Expected an indented block (comment) ] [tool.ruff.per-file-ignores]