summaryrefslogtreecommitdiff
path: root/cloudinit/reporting
diff options
context:
space:
mode:
authorJoshua Powers <josh.powers@canonical.com>2020-06-02 09:06:07 -0700
committerGitHub <noreply@github.com>2020-06-02 12:06:07 -0400
commitd53921ea3396c8301c65cad3abf04b4542d4b7a0 (patch)
treed19c4271786853d2da050749dc5a65dc95878327 /cloudinit/reporting
parent5f7825e22241423322dbe628de1b00289cf34114 (diff)
downloadvyos-cloud-init-d53921ea3396c8301c65cad3abf04b4542d4b7a0.tar.gz
vyos-cloud-init-d53921ea3396c8301c65cad3abf04b4542d4b7a0.zip
test: fix all flake8 E121 and E123 errors (#404)
This fixes issues with closing brackets not matching the opening bracket's line and continuation line under-idented for hanging indent.
Diffstat (limited to 'cloudinit/reporting')
-rwxr-xr-xcloudinit/reporting/handlers.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/cloudinit/reporting/handlers.py b/cloudinit/reporting/handlers.py
index 946df7e0..00e8d2e5 100755
--- a/cloudinit/reporting/handlers.py
+++ b/cloudinit/reporting/handlers.py
@@ -219,7 +219,7 @@ class HyperVKvpReportingHandler(ReportingHandler):
v = (
record_data[
self.HV_KVP_EXCHANGE_MAX_KEY_SIZE:self.HV_KVP_RECORD_SIZE
- ].decode('utf-8').strip('\x00'))
+ ].decode('utf-8').strip('\x00'))
return {'key': k, 'value': v}
@@ -265,11 +265,11 @@ class HyperVKvpReportingHandler(ReportingHandler):
"""
key = self._event_key(event)
meta_data = {
- "name": event.name,
- "type": event.event_type,
- "ts": (datetime.utcfromtimestamp(event.timestamp)
- .isoformat() + 'Z'),
- }
+ "name": event.name,
+ "type": event.event_type,
+ "ts": (datetime.utcfromtimestamp(event.timestamp)
+ .isoformat() + 'Z'),
+ }
if hasattr(event, self.RESULT_KEY):
meta_data[self.RESULT_KEY] = event.result
meta_data[self.MSG_KEY] = event.description