Get live services csv report

This commit is contained in:
Pea Tyczynska
2019-04-24 16:23:12 +01:00
parent b643aa54ec
commit b0a8c5edf6
5 changed files with 91 additions and 4 deletions

View File

@@ -246,7 +246,6 @@ class Spreadsheet():
def from_rows(cls, rows, filename=''):
with StringIO() as converted:
output = csv.writer(converted)
for row in rows:
output.writerow(row)
return cls(converted.getvalue(), filename)