Skip to content

Commit b85b36a

Browse files
committed
feat: non field escaping
1 parent 05cb210 commit b85b36a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sigma/backends/golangexpr/golangexpr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class GolangExprBackend(TextQueryBackend):
4242
# String output
4343
## Fields
4444
### Quoting
45-
field_quote : ClassVar[str] = "'" # Character used to quote field characters if field_quote_pattern matches (or not, depending on field_quote_pattern_negation). No field name quoting is done if not set.
45+
field_quote : None #ClassVar[str] = "'" # Character used to quote field characters if field_quote_pattern matches (or not, depending on field_quote_pattern_negation). No field name quoting is done if not set.
4646
field_quote_pattern : ClassVar[Pattern] = re.compile("^\\w+$") # Quote field names if this pattern (doesn't) matches, depending on field_quote_pattern_negation. Field name is always quoted if pattern is not set.
4747
field_quote_pattern_negation : ClassVar[bool] = True # Negate field_quote_pattern result. Field name is quoted if pattern doesn't matches if set to True (default).
4848

0 commit comments

Comments
 (0)