From a052abc72d570a63c671c6a4288830839356a839 Mon Sep 17 00:00:00 2001 From: Jordi Nadeu Date: Wed, 5 Aug 2020 11:56:59 +0200 Subject: [PATCH] Minor fix indentation error --- ereuse_devicehub/resources/documents/documents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ereuse_devicehub/resources/documents/documents.py b/ereuse_devicehub/resources/documents/documents.py index 842a945a..7373f91a 100644 --- a/ereuse_devicehub/resources/documents/documents.py +++ b/ereuse_devicehub/resources/documents/documents.py @@ -139,7 +139,7 @@ class StockDocumentView(DeviceView): cw = csv.writer(data) first = True for device in query: - d = StockRow(device) + d = StockRow(device) if first: cw.writerow(d.keys()) first = False