Skip to content

Commit

Permalink
order is converted to string
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Aug 21, 2024
1 parent 1e7be78 commit 7e4da07
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -446,9 +446,9 @@ def __init__(self, plugin_item, parent):
if plugin_item.families:
families = ", ".join(plugin_item.families)

order = plugin_item.order
if order is None:
order = "N/A"
order = "N/A"
if plugin_item.order is not None:
order = str(plugin_item.order)

plugin_label_widget.setText(plugin_label)
plugin_doc_widget.setText(plugin_item.docstring or "N/A")
Expand Down

0 comments on commit 7e4da07

Please sign in to comment.