[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] 2022-01-04 14:35:53 +00:00
parent b5a72c30da
commit 9e8755b51f
1 changed files with 5 additions and 5 deletions

View File

@ -1126,12 +1126,12 @@ class Config:
return
def _get_files(dist):
#dist.files does not make sense for dists
#who are not stored on a filesystem
#at least pyoxidizer does throw a
#not implemented assertion in this case
# dist.files does not make sense for dists
# who are not stored on a filesystem
# at least pyoxidizer does throw a
# not implemented assertion in this case
try:
return dist.files
return dist.files
except NotImplementedError:
return []