From 08823e3bea4a1ca2af8c38460ca0ce1632f32439 Mon Sep 17 00:00:00 2001 From: Denis Kuzmenok Date: Thu, 28 Mar 2024 15:02:28 +0100 Subject: [PATCH] Fixed linter issue --- burst/filtering.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/burst/filtering.py b/burst/filtering.py index 54062345..b9de581e 100644 --- a/burst/filtering.py +++ b/burst/filtering.py @@ -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: