Skip to content

Commit f28fb26

Browse files
author
Nick Selpa
committed
Applied linter
1 parent f16419b commit f28fb26

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cloudendure/cloudendure.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,9 @@ def get_machine_sync_details(self) -> Dict[Any]:
472472
if "lastSeenDateTime" in _query_value["replicationInfo"].keys():
473473
response_dict[machine_id]["last_seen_utc"] = _query_value["replicationInfo"]["lastSeenDateTime"]
474474
if "rescannedStorageBytes" in _query_value["replicationInfo"].keys():
475-
response_dict[machine_id]["rescanned_storage_bytes"] = _query_value["replicationInfo"]["rescannedStorageBytes"]
475+
response_dict[machine_id]["rescanned_storage_bytes"] = _query_value["replicationInfo"][
476+
"rescannedStorageBytes"
477+
]
476478
# Project is still printing to console as a convention; Emitting an
477479
# output to stdout for interactive usage
478480
return response_dict

0 commit comments

Comments
 (0)