diff --git a/faraday_agent_dispatcher/static/executors/official/microsoft_defender.py b/faraday_agent_dispatcher/static/executors/official/microsoft_defender.py index d6bbe74e..67318f30 100644 --- a/faraday_agent_dispatcher/static/executors/official/microsoft_defender.py +++ b/faraday_agent_dispatcher/static/executors/official/microsoft_defender.py @@ -36,7 +36,7 @@ def description_maker(machine): continue # converts '7CDB98C877F1' into '7C:DB:98:C8:77:F1' for better readability mac = ( - (":".join(ip["macAddress"][i : i + 2] for i in range(0, len(ip["macAddress"]), 2))) + (":".join(ip["macAddress"][i:i+2] for i in range(0, len(ip["macAddress"]), 2))) if ip["macAddress"] is not None else "N/A" )