Skip to content

Commit

Permalink
Reformatted with black
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspatzke committed Jan 9, 2025
1 parent ea6cff5 commit a63a17a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sigma/processing/transformations/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class FieldPrefixMappingTransformation(FieldMappingTransformation):
def get_mapping(self, field: str) -> Union[None, str, List[str]]:
if field is None:
return None

for src, dest in self.mapping.items():
if field.startswith(src): # found matching prefix
if isinstance(dest, str):
Expand Down

0 comments on commit a63a17a

Please sign in to comment.