[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2021-11-03 13:47:10 +00:00
parent 8ddeaab59d
commit eaed295d41

View file

@ -112,7 +112,7 @@ class Classifier:
# surround filenames containing whitespace with quotes # surround filenames containing whitespace with quotes
for f in names: for f in names:
if re.search(r"\s", f): if re.search(r'\s', f):
f = '"' + f + '"' f = '"' + f + '"'
return tuple(names) return tuple(names)