Skip to content

Commit

Permalink
Fixed linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
elgatito committed Mar 28, 2024
1 parent a6930b3 commit 08823e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion burst/filtering.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ def included(self, value, keys, strict=False):
for key in keys:
res2 = []
for item in re.split(r'\s', key):
item = item.replace('_', ' ') # for keyword like _HEVC_
item = item.replace('_', ' ') # for keyword like _HEVC_
if strict:
item = ' ' + item + ' '
if item.lower() in value:
Expand Down

0 comments on commit 08823e3

Please sign in to comment.