Skip to content

Commit 0122b72

Browse files
Fix code checks
1 parent 9ab2f2c commit 0122b72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

detection_rules/cli_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def rule_prompt( # noqa: PLR0912, PLR0913, PLR0915
375375
# if failing due to a query, loop until resolved or terminated
376376
while True:
377377
try:
378-
contents["query"] = click.edit(contents["query"], extension=".eql") # type: ignore[reportUnknownArgumentType]
378+
contents["query"] = click.edit(contents["query"], extension=".eql") # type: ignore[reportUnknownArgumentType]
379379
rule = TOMLRule(
380380
path=Path(path),
381381
contents=TOMLRuleContents.from_dict({"rule": contents, "metadata": meta}),

0 commit comments

Comments
 (0)