1
0
Fork 0
mirror of synced 2024-06-01 10:09:49 +12:00

minor pylint fixes in logging_util

This commit is contained in:
Nick Sweeting 2024-04-23 17:45:18 -07:00
parent 756e159dfe
commit 63fc317229
No known key found for this signature in database

View file

@ -494,12 +494,12 @@ def log_removal_started(links: List["Link"], yes: bool, delete: bool):
if delete: if delete:
file_counts = [link.num_outputs for link in links if Path(link.link_dir).exists()] file_counts = [link.num_outputs for link in links if Path(link.link_dir).exists()]
print( print(
f' {len(links)} Links will be de-listed from the main index, and their archived content folders will be deleted from disk.\n' f' {len(links)} Links will be de-listed from the main index, and their archived content folders will be deleted from disk.\n' +
f' ({len(file_counts)} data folders with {sum(file_counts)} archived files will be deleted!)' f' ({len(file_counts)} data folders with {sum(file_counts)} archived files will be deleted!)'
) )
else: else:
print( print(
' Matching links will be de-listed from the main index, but their archived content folders will remain in place on disk.\n' ' Matching links will be de-listed from the main index, but their archived content folders will remain in place on disk.\n' +
' (Pass --delete if you also want to permanently delete the data folders)' ' (Pass --delete if you also want to permanently delete the data folders)'
) )
@ -638,17 +638,15 @@ def printable_folder_status(name: str, folder: Dict) -> str:
@enforce_types @enforce_types
def printable_dependency_version(name: str, dependency: Dict) -> str: def printable_dependency_version(name: str, dependency: Dict) -> str:
version = None color, symbol, note, version = 'red', 'X', 'invalid', '?'
if dependency['enabled']: if dependency['enabled']:
if dependency['is_valid']: if dependency['is_valid']:
color, symbol, note, version = 'green', '', 'valid', '' color, symbol, note = 'green', '', 'valid'
parsed_version_num = re.search(r'[\d\.]+', dependency['version']) parsed_version_num = re.search(r'[\d\.]+', dependency['version'])
if parsed_version_num: if parsed_version_num:
version = f'v{parsed_version_num[0]}' version = f'v{parsed_version_num[0]}'
if not version:
color, symbol, note, version = 'red', 'X', 'invalid', '?'
else: else:
color, symbol, note, version = 'lightyellow', '-', 'disabled', '-' color, symbol, note, version = 'lightyellow', '-', 'disabled', '-'