From db4540089ae3d415cc239d5025859d7008fcaf94 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 3 Oct 2022 13:17:48 +0100 Subject: [PATCH] remove parentheses from if statement to fix codestyle test Signed-off-by: Adam --- api/tacticalrmm/agents/models.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/api/tacticalrmm/agents/models.py b/api/tacticalrmm/agents/models.py index 6e75ac24..157ef81e 100644 --- a/api/tacticalrmm/agents/models.py +++ b/api/tacticalrmm/agents/models.py @@ -623,11 +623,7 @@ class Agent(BaseAuditModel): policies = self.get_agent_policies() for _, policy in policies.items(): - if ( - policy - and policy.active - and policy.winupdatepolicy.exists() - ): + if policy and policy.active and policy.winupdatepolicy.exists(): patch_policy = policy.winupdatepolicy.first() break