summaryrefslogtreecommitdiffstats
path: root/fuel/deploy/cloud/configure_settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'fuel/deploy/cloud/configure_settings.py')
-rw-r--r--fuel/deploy/cloud/configure_settings.py18
1 files changed, 7 insertions, 11 deletions
diff --git a/fuel/deploy/cloud/configure_settings.py b/fuel/deploy/cloud/configure_settings.py
index fa918fd3d..c773e1b61 100644
--- a/fuel/deploy/cloud/configure_settings.py
+++ b/fuel/deploy/cloud/configure_settings.py
@@ -7,20 +7,16 @@
# http://www.apache.org/licenses/LICENSE-2.0
###############################################################################
-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 ConfigureSettings(object):