Commit 6d37dec
committed
Fix ImportError: Import up module instead of function
Changed the import in commands/__init__.py from importing the up
function to importing the up module. This fixes the AttributeError
where cli.py was trying to access up.run but up was a function
instead of a module.
Fixes the error:
AttributeError: 'function' object has no attribute 'run'1 parent 48c8713 commit 6d37dec
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
0 commit comments