You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sigma/backends/golangexpr/golangexpr.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ class GolangExprBackend(TextQueryBackend):
42
42
# String output
43
43
## Fields
44
44
### 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.
46
46
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.
47
47
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).
0 commit comments