File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -490,7 +490,9 @@ def get_machine_sync_details(self) -> List[Any]:
490490
491491 def inspect_ce_project (self , check_type : str ) -> List [Any ]:
492492 if not check_type :
493- print (f"ERROR: Unknown check_type of '{ check_type } '; Please use 'not_synced', 'not_started', or 'not_current' ..." )
493+ print (
494+ f"ERROR: Unknown check_type of '{ check_type } '; Please use 'not_synced', 'not_started', or 'not_current' ..."
495+ )
494496 return
495497 result : List [Any ] = []
496498 sync_report : List [Any ] = self .get_machine_sync_details ()
@@ -514,8 +516,8 @@ def not_started(self, machine) -> bool:
514516 return False
515517 else :
516518 return True
517-
518- def not_current (self , machine , delta_seconds : int = 86400 ) -> bool :
519+
520+ def not_current (self , machine , delta_seconds : int = 86400 ) -> bool :
519521 now : datetime = datetime .now (timezone .utc )
520522 machine_last_seen : datetime = datetime .fromisoformat (machine ["last_seen_utc" ])
521523 last_seen_delta : datetime = now - machine_last_seen
You can’t perform that action at this time.
0 commit comments