Skip to content

Commit ca1af82

Browse files
authored
Merge pull request #94 from GispoCoding/fix-load
2 parents 8df3986 + 09c362b commit ca1af82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arho_feature_template/gui/load_plan_dialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def load_plans(self):
112112
p.plan_type_id = pt.id;
113113
""")
114114
for plan in plans:
115-
self.model.appendRow([QStandardItem(column) for column in plan])
115+
self.model.appendRow([QStandardItem(column or "") for column in plan])
116116

117117
except Exception as e: # noqa: BLE001
118118
QMessageBox.critical(self, "Error", f"Failed to load plans: {e}")

0 commit comments

Comments
 (0)