Skip to content

Commit 429ce08

Browse files
committed
Spacing
1 parent 5ed595d commit 429ce08

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

lintomatic.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,6 @@ def check_indentation(file_path: str) -> List[int]:
8282
if not curr_line.strip() or not prev_line.strip():
8383
continue
8484

85-
# Skip if previous line is blank
86-
if not prev_line.strip():
87-
continue
88-
89-
# Calculate indentation levels
9085
prev_indent = len(prev_line) - len(prev_line.lstrip())
9186
curr_indent = len(curr_line) - len(curr_line.lstrip())
9287

0 commit comments

Comments
 (0)