remove parentheses from if statement to fix codestyle test
Signed-off-by: Adam <adam@csparker.co.uk>
This commit is contained in:
parent
24c899c91a
commit
db4540089a
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue