diff --git a/ocs_ci/helpers/dr_helpers.py b/ocs_ci/helpers/dr_helpers.py index fa7dd54bb03..db186c0de30 100644 --- a/ocs_ci/helpers/dr_helpers.py +++ b/ocs_ci/helpers/dr_helpers.py @@ -1698,7 +1698,9 @@ def verify_last_kubeobject_protection_time(drpc_obj, kubeoject_sync_interval): time_since_last_sync = ( current_time - last_kubeobject_protection_time_formatted ).total_seconds() / 60 - logger.info(f"Time in minutes since the last Kube Object sync {time_since_last_sync}") + logger.info( + f"Time in minutes since the last Kube Object sync {time_since_last_sync}" + ) assert ( time_since_last_sync < 2 * kubeoject_sync_interval ), "The syncing of Kube Resources is exceeding three times the Kube object sync interval"