add pylint integration & fix some pylint warnings

This commit is contained in:
2021-03-19 05:07:41 +03:00
parent f929a552e8
commit e7736e985f
19 changed files with 680 additions and 75 deletions

View File

@ -51,7 +51,7 @@ class IndexView(BaseView):
packages = [
{
'base': package.base,
'packages': [p for p in sorted(package.packages)],
'packages': list(sorted(package.packages)),
'status': status.status.value,
'timestamp': pretty_datetime(status.timestamp),
'version': package.version,