testing file importing
This commit is contained in:
parent
2e59827be4
commit
442ae8352e
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
import inquirer
|
||||
from glob import glob
|
||||
from ..util import import_file
|
||||
|
||||
|
||||
def choose_action():
|
||||
|
@ -16,4 +17,6 @@ def choose_action():
|
|||
]
|
||||
)
|
||||
|
||||
print(response["actions"])
|
||||
for action_name in response["actions"]:
|
||||
module = import_file(action_name, f"src/setup/{action_name}")
|
||||
print(module.name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue