Skip to content

Commit

Permalink
Add import shutil (#109)
Browse files Browse the repository at this point in the history
Adds import shutil at the top of the script to prevent line 77 from causing an error when installing the -g gaming package


line 77:
```python
if pkg_mngr == 'snap' and not shutil.which('snap'):
```
  • Loading branch information
cloudymax authored Dec 2, 2022
1 parent 6116730 commit 7d43d89
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions onboardme/pkg_management.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import logging as log
import shutil
from os import path

from .env_config import OS, PWD, HOME_DIR, load_cfg
Expand Down

0 comments on commit 7d43d89

Please sign in to comment.