summaryrefslogtreecommitdiff
path: root/heatclient/v1/software_configs.py
diff options
context:
space:
mode:
Diffstat (limited to 'heatclient/v1/software_configs.py')
-rw-r--r--heatclient/v1/software_configs.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/heatclient/v1/software_configs.py b/heatclient/v1/software_configs.py
index 79fbddd..8d5c9e1 100644
--- a/heatclient/v1/software_configs.py
+++ b/heatclient/v1/software_configs.py
@@ -10,7 +10,6 @@
# License for the specific language governing permissions and limitations
# under the License.
-import six
from six.moves.urllib import parse
from heatclient.common import base
@@ -38,7 +37,7 @@ class SoftwareConfigManager(base.BaseManager):
"""
qparams = {}
- for opt, val in six.iteritems(kwargs):
+ for opt, val in kwargs.items():
if val:
qparams[opt] = val