Skip to content

Commit 5ebcfab

Browse files
committed
lint
1 parent 43c7e0f commit 5ebcfab

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/compas_rhino/install.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
'install',
1717
'installable_rhino_packages',
1818
'after_rhino_install',
19-
'after_rhino_uninstall',
2019
]
2120

2221

@@ -126,6 +125,7 @@ def install(version=None, packages=None):
126125
if exit_code != 0:
127126
sys.exit(exit_code)
128127

128+
129129
def _run_post_execution_steps(steps_generator):
130130
post_execution_errors = []
131131
for result in steps_generator:
@@ -210,6 +210,7 @@ def after_rhino_install(installed_packages):
210210
"""
211211
pass
212212

213+
213214
def _update_bootstrapper(install_path, packages):
214215
# Take either the CONDA environment directory or the current Python executable's directory
215216
python_directory = os.environ.get('CONDA_PREFIX', None) or os.path.dirname(sys.executable)

src/compas_rhino/uninstall.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212
from compas_rhino.install import _run_post_execution_steps
1313
from compas_rhino.install import installable_rhino_packages
1414

15-
__all__ = ['uninstall']
15+
__all__ = [
16+
'uninstall',
17+
'after_rhino_uninstall',
18+
]
1619

1720

1821
def uninstall(version=None, packages=None):

0 commit comments

Comments
 (0)