Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Sep 28, 2024
1 parent b3b12a0 commit 68b3f5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fake_bpy_module/transformer/data_type_refiner.py
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ def is_cls_attr_in_never_none_blacklist(
additional_info["data_name"]):
option_results.append("never none")

option_results = sorted(list(set(option_results)))
option_results = sorted(set(option_results))
r.attributes["option"] = ",".join(option_results)

output_log(
Expand Down

0 comments on commit 68b3f5d

Please sign in to comment.