Replacing six.iteritems() with .items()

We should avoid using six.iteritems to achieve
iterators. We can use dict.items instead, as it will return iterators
in PY3* as well. And dict.items/keys will be more readable.

Change-Id: I3cd894253d6f5f9f39899dff678fd3fcf70ddc53
This commit is contained in:
rajat29 2017-10-27 13:07:18 +05:30
parent 724097ccb2
commit 98d268a9e4

View File

@ -14,7 +14,6 @@
from oslo_db.sqlalchemy import models
import six
from sqlalchemy import Column, String, SmallInteger, BigInteger, Index
from sqlalchemy.ext.declarative import declarative_base
@ -33,7 +32,7 @@ class VitrageBase(models.TimestampMixin, models.ModelBase):
def update(self, values):
"""Make the model object behave like a dict."""
for k, v in six.iteritems(values):
for k, v in values.items():
setattr(self, k, v)