We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0c8efe5 + 9210f8d commit 6ecdabaCopy full SHA for 6ecdaba
1 file changed
connect/cli/plugins/shared/translation_attr_sync.py
@@ -82,7 +82,7 @@ def _collect_attributes_to_update(self, ws, translation, is_clone):
82
new_attrs = None
83
if is_clone and translation is not None:
84
translation_res = self._client.ns('localization').translations[translation['id']]
85
- new_attrs = translation_res.attributes.all()
+ new_attrs = list(translation_res.attributes.all())
86
attributes = {}
87
for row_idx, row in enumerate(ws.iter_rows(min_row=2, values_only=True), 2):
88
row = AttributeRow(*row)
0 commit comments