Skip to content

Commit da32443

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

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

cpex/tools/catalog.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
"""
99

1010
import base64
11-
import importlib.metadata
12-
import importlib.util
1311
import logging
1412
import os
1513
import subprocess

cpex/tools/cli.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,7 @@ def _finalize_installation(manifest: PluginManifest, install_type: str, catalog:
448448
)
449449
update_plugins_config_yaml(manifest=manifest)
450450

451+
451452
def _install_from_local(source: str, catalog: PluginCatalog, use_test: bool = False):
452453
"""Handle local-based installation (not yet implemented).
453454
@@ -460,6 +461,7 @@ def _install_from_local(source: str, catalog: PluginCatalog, use_test: bool = Fa
460461
"""
461462
raise NotImplementedError("Local installation is not yet implemented")
462463

464+
463465
def _install_from_git(source: str, catalog: PluginCatalog, use_test: bool = False):
464466
"""Handle git-based installation (not yet implemented).
465467
@@ -672,8 +674,8 @@ def uninstall(plugin_name: str, catalog: PluginCatalog) -> None:
672674
"python cpex/tools/cli.py plugin search pii\n"
673675
"python cpex/tools/cli.py plugin --type monorepo search pii\n"
674676
"python cpex/tools/cli.py plugin --type monorepo install cpex-pii-filter\n"
675-
"python cpex/tools/cli.py plugin --type pypi install \"ExamplePlugin@>=0.1.0\"\n"
676-
"python cpex/tools/cli.py plugin --type test-pypi install \"cpex-plugin-test@>=0.1.1\"\n"
677+
'python cpex/tools/cli.py plugin --type pypi install "ExamplePlugin@>=0.1.0"\n'
678+
'python cpex/tools/cli.py plugin --type test-pypi install "cpex-plugin-test@>=0.1.1"\n'
677679
"python cpex/tools/cli.py plugin uninstall cpex-pii-filter"
678680
)
679681
def plugin(

0 commit comments

Comments
 (0)