Skip to content

Commit e6707c3

Browse files
committed
chore: lint fix
Signed-off-by: habeck <habeck@us.ibm.com>
1 parent ede08b8 commit e6707c3

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

cpex/tools/plugin_registry.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,10 @@ def __init__(self, *args, **kwargs):
3838
except (json.JSONDecodeError, ValueError, KeyError) as e:
3939
# If registry is corrupted, log error and start fresh
4040
import logging
41+
4142
logger = logging.getLogger(__name__)
4243
logger.error(
43-
"Corrupted plugin registry file at %s: %s. Starting with empty registry.",
44-
ipr_file,
45-
str(e)
44+
"Corrupted plugin registry file at %s: %s. Starting with empty registry.", ipr_file, str(e)
4645
)
4746
# Backup the corrupted file
4847
backup_file = ipr_file.with_suffix(".json.corrupted")

0 commit comments

Comments
 (0)