Skip to content

Commit 68a3998

Browse files
committed
Resolve Codacy warning
1 parent edc80f1 commit 68a3998

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ansys/dpf/core/label_space.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ def _data_processing_core_api(self):
4343
return core_api
4444

4545
def fill(self, label_space):
46-
for key, id in label_space.items():
47-
self._api.label_space_add_data(self, key, id)
46+
for key, index in label_space.items():
47+
self._api.label_space_add_data(self, key, index)
4848

4949
def __dict__(self):
5050
if isinstance(self._internal_obj, dict):

0 commit comments

Comments
 (0)