sanketsaurav / lore

Consider iterating dictionary PYL-C0201
Anti-pattern
Major
4 years ago5 years old
Consider iterating the dictionary directly instead of calling .keys()
149        :return: None
150        """
151        data = self._features_as_kv()
152        for key in data.keys():153            cache.batch_set(data[key])
154
155