Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
fix dict/set type
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Jun 22, 2021
1 parent a7962aa commit 9cbb102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/settings/entities/enum_entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def _item_initalization(self):
for key in host_names:
label = custom_labels.get(key, key)
valid_keys.add(key)
enum_items.append({key, label})
enum_items.append({key: label})

self.enum_items = enum_items
self.valid_keys = valid_keys
Expand Down

0 comments on commit 9cbb102

Please sign in to comment.