From ec69c1552f9d1dbbf57cf737fcd91eebfc6054f4 Mon Sep 17 00:00:00 2001 From: Ahmad Bilal Khalid Date: Thu, 18 Jul 2019 18:59:57 +0500 Subject: [PATCH] fix imports --- commands/host.py | 2 +- commands/image.py | 2 +- commands/user.py | 2 +- commands/vm.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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):