Bang refactor PEP-8 fix

Addresses PEP-8 formatting issue in previous commit
このコミットが含まれているのは:
Ben Busby 2021-11-01 16:53:19 -06:00
コミット c766554eea
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 339B7B7EB5333D14

ファイルの表示

@ -58,7 +58,8 @@ def resolve_bang(query: str, bangs_dict: dict) -> str:
if operator not in split_query \
and operator[1:] + operator[0] not in split_query:
continue
return bangs_dict[operator]['url'].replace('{}',
return bangs_dict[operator]['url'].replace(
'{}',
query.replace(operator if operator in split_query
else operator[1:] + operator[0], '').strip(), 1)
return ''