Skip to content

Commit fcff0b8

Browse files
author
Nick Selpa
committed
Applied black linter
1 parent 73a7359 commit fcff0b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cloudendure/cloudendure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ def get_machine_sync_details(self) -> Dict[Any]:
461461
machine_id: str = _query_value["id"]
462462
replication_info: Dict[str, Any] = _query_value.get("replicationInfo", {})
463463
response_dict[machine_id] = {
464-
"machine_name": _query_value.get("sourceProperties",{}).get("name",""),
464+
"machine_name": _query_value.get("sourceProperties", {}).get("name", ""),
465465
"in_inventory": _query_value["isAgentInstalled"],
466466
"replication_status": _query_value["replicationStatus"],
467467
"total_storage_bytes": replication_info.get("totalStorageBytes", -1),
@@ -476,7 +476,7 @@ def get_machine_sync_details(self) -> Dict[Any]:
476476
return response_dict
477477

478478
def inspect_ce_project(self, check_type: str) -> Dict[str, Any]:
479-
valid_check_types: List[str] = ['not_synced', 'not_started', 'not_current']
479+
valid_check_types: List[str] = ["not_synced", "not_started", "not_current"]
480480
if check_type not in valid_check_types:
481481
print(
482482
f'ERROR: Unknown check_type of "{check_type}"; Please use a valid check_type: [ {", ".join(valid_check_types)} ] ...'

0 commit comments

Comments
 (0)