summaryrefslogtreecommitdiffstats
path: root/fuel/deploy/cloud/configure_network.py
diff options
context:
space:
mode:
Diffstat (limited to 'fuel/deploy/cloud/configure_network.py')
-rw-r--r--fuel/deploy/cloud/configure_network.py17
1 files changed, 6 insertions, 11 deletions
diff --git a/fuel/deploy/cloud/configure_network.py b/fuel/deploy/cloud/configure_network.py
index 00278949d..b3ff9e9e0 100644
--- a/fuel/deploy/cloud/configure_network.py
+++ b/fuel/deploy/cloud/configure_network.py
@@ -8,20 +8,15 @@
###############################################################################
-import common
import yaml
import io
-N = common.N
-E = common.E
-R = common.R
-RO = common.RO
-exec_cmd = common.exec_cmd
-parse = common.parse
-err = common.err
-check_file_exists = common.check_file_exists
-log = common.log
-backup = common.backup
+from common import (
+ exec_cmd,
+ check_file_exists,
+ log,
+ backup,
+)
class ConfigureNetwork(object):