typing: minimal changes to make a no-op mypy run pass

This commit is contained in:
Stefano Zacchiroli 2019-10-11 15:15:09 +02:00
parent 78105940ff
commit 974f80f966
18 changed files with 135 additions and 47 deletions

View file

@ -42,7 +42,7 @@ def compute_package_url(repo: Mapping[str, str]) -> str:
"""
return 'https://cran.r-project.org/src/contrib' \
'/%(Package)s_%(Version)s.tar.gz' % repo
'/%(Package)s_%(Version)s.tar.gz'.format(repo)
class CRANLister(SimpleLister):