From d7e457790091d137324fbc95b61ac6d93dbb0d9d Mon Sep 17 00:00:00 2001 From: Shreyas Khandekar <60454060+ShreyasKhandekar@users.noreply.github.com> Date: Mon, 4 Nov 2024 12:38:26 -0600 Subject: [PATCH] Formatting fix and remove extra comment Signed-off-by: Shreyas Khandekar <60454060+ShreyasKhandekar@users.noreply.github.com> --- tools/chplcheck/src/rules.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/chplcheck/src/rules.py b/tools/chplcheck/src/rules.py index e7e9cb495534..7133336f8687 100644 --- a/tools/chplcheck/src/rules.py +++ b/tools/chplcheck/src/rules.py @@ -571,8 +571,7 @@ def append_nested_single_stmt(node, prev: List[AstNode]): prev.append(stmt) append_nested_single_stmt(stmt, prev) return node # Return the outermost on to use an anchor - - # Should we also check for Conditionals here? + return None @driver.fixit(MisleadingIndentation)