We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ed595d commit 429ce08Copy full SHA for 429ce08
1 file changed
lintomatic.py
@@ -82,11 +82,6 @@ def check_indentation(file_path: str) -> List[int]:
82
if not curr_line.strip() or not prev_line.strip():
83
continue
84
85
- # Skip if previous line is blank
86
- if not prev_line.strip():
87
- continue
88
-
89
- # Calculate indentation levels
90
prev_indent = len(prev_line) - len(prev_line.lstrip())
91
curr_indent = len(curr_line) - len(curr_line.lstrip())
92
0 commit comments