We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07cff56 commit 027df5dCopy full SHA for 027df5d
bw2io/importers/base_lci.py
@@ -770,10 +770,12 @@ def create_randonneur_excel_template_for_unlinked(
770
if not filepath.suffix.lower() == ".xlsx":
771
filepath = filepath.with_suffix(".xlsx")
772
773
+ source_fields, target_fields = sorted(source_fields), sorted(target_fields)
774
+
775
data = [
776
{
- "source": {key: obj.get(key) for key in sorted(source_fields)},
- "target": {key: "" for key in sorted(target_fields)},
777
+ "source": {key: obj.get(key) for key in source_fields},
778
+ "target": {key: "" for key in target_fields},
779
}
780
for obj in self.unlinked
781
if edge_filter(obj)
0 commit comments