Skip to content

Commit d382c06

Browse files
add noqa
1 parent 7dfe056 commit d382c06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

detection_rules/rule_validators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@ def extract_error_field(source: str, exc: eql.EqlParseError | kql.KqlParseError,
938938
# Handle cases where subqueries cause column alignment to be off
939939
for _ in range(max_attempts):
940940
if line[start - 1] != " ":
941-
start -= 1
941+
start -= 1 # type: ignore[reportUnknownMemberType]
942942
else:
943943
break
944944
stop = start + len(exc.caret.strip()) # type: ignore[reportUnknownVariableType]

0 commit comments

Comments
 (0)