misc: apply double-quote-string-fixer (#79788)

This commit is contained in:
Valentin Deniaud 2023-08-16 11:52:46 +02:00
parent 2b68647e9f
commit 00ec5e5bbe
2 changed files with 4 additions and 4 deletions

View File

@ -454,7 +454,7 @@ def link(issue):
class MyProgressPrinter(git.RemoteProgress):
def update(self, op_code, cur_count, max_count=None, message=''):
print(op_code, cur_count, max_count, cur_count / (max_count or 100.0), message or "NO MESSAGE")
print(op_code, cur_count, max_count, cur_count / (max_count or 100.0), message or 'NO MESSAGE')
def get_commits(repo, ref):

View File

@ -11,9 +11,9 @@ setup(
description='Git porcelain to interface with Redmine',
long_description=readme,
py_modules=['git_redmine'],
author="Benjamin Dauvergne",
author_email="bdauvergne@entrouvert.com",
url="https://dev.entrouvert.org/projects/git-redmine/",
author='Benjamin Dauvergne',
author_email='bdauvergne@entrouvert.com',
url='https://dev.entrouvert.org/projects/git-redmine/',
install_requires=[
'Click',
'python-redmine',