diff --git a/main.py b/main.py index a090973..e09e6b5 100644 --- a/main.py +++ b/main.py @@ -277,10 +277,10 @@ def _extract_ignored_languages(): temp = "" for igl in wk_i.ignored_languages.strip().split(): if igl.startswith('"'): - temp = igl + temp = igl.lstrip('"') continue if igl.endswith('"'): - igl = f"{temp} {igl}" + igl = f"{temp} {igl.rstrip('"')}" temp = "" yield igl