Compare commits

...

1 Commits

Author SHA1 Message Date
Benny Megidish 6255f69e4a fix: position file header 2022-08-02 15:13:07 +03:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -29,7 +29,7 @@
],
"versions": [
{
"version": "1.1.0",
"version": "1.1.1",
"status": "stable",
"kicad_version": "6.00"
}
+1 -1
View File
@@ -140,7 +140,7 @@ class ProcessManager:
with open((os.path.join(temp_dir, placementFileName)), 'w', newline='', encoding='utf-8') as outfile:
csv_writer = csv.writer(outfile)
# writing headers of CSV file
csv_writer.writerow(component.keys())
csv_writer.writerow(self.components[0].keys())
for component in self.components:
# writing data of CSV file