add whitespaces to pep8 formatted strings

This commit is contained in:
adeadfed 2023-04-13 16:05:50 +02:00
parent 5537bcd217
commit 2103371746

View File

@ -177,7 +177,7 @@ def get_imports_info(
for item in imports: for item in imports:
try: try:
logging.warning( logging.warning(
'Import named "%s" not found locally.' 'Import named "%s" not found locally. '
'Trying to resolve it at the PyPI server.', 'Trying to resolve it at the PyPI server.',
item item
) )
@ -196,8 +196,8 @@ def get_imports_info(
'Package "%s" does not exist or network problems', item) 'Package "%s" does not exist or network problems', item)
continue continue
logging.warning( logging.warning(
'Import named "%s" was resolved to "%s:%s" package (%s).' 'Import named "%s" was resolved to "%s:%s" package (%s).\n'
'Please, verify manually the final list of requirements.txt' 'Please, verify manually the final list of requirements.txt '
'to avoid possible dependency confusions.', 'to avoid possible dependency confusions.',
item, item,
data.name, data.name,