diff --git a/commands/host.py b/commands/host.py index b15e0b4..ea6f9d0 100644 --- a/commands/host.py +++ b/commands/host.py @@ -3,7 +3,7 @@ import json import requests from decouple import config -from helper import OTPCredentials +from .helper import OTPCredentials @click.group() diff --git a/commands/image.py b/commands/image.py index f355a9a..7979320 100644 --- a/commands/image.py +++ b/commands/image.py @@ -3,7 +3,7 @@ import json import requests from decouple import config -from helper import OTPCredentials +from .helper import OTPCredentials @click.group() diff --git a/commands/user.py b/commands/user.py index 433e2e9..0fa79ab 100644 --- a/commands/user.py +++ b/commands/user.py @@ -3,7 +3,7 @@ import json import requests from decouple import config -from helper import OTPCredentials +from .helper import OTPCredentials @click.group() diff --git a/commands/vm.py b/commands/vm.py index 7301efd..8744fbe 100644 --- a/commands/vm.py +++ b/commands/vm.py @@ -3,7 +3,7 @@ import json import requests from decouple import config -from helper import OTPCredentials +from .helper import OTPCredentials def vm_action(action, otp, vmid):