Revert "Island: Fix mypy issues in exploit.py"

This reverts commit 9c49cdafa3.
This commit is contained in:
Mike Salvatore 2022-09-21 20:43:09 -04:00
parent 5e7689345f
commit f591f150fc
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import copy import copy
from dateutil import parser as dateutil_parser import dateutil
from monkey_island.cc.models import Monkey from monkey_island.cc.models import Monkey
from monkey_island.cc.server_utils.encryption import get_datastore_encryptor from monkey_island.cc.server_utils.encryption import get_datastore_encryptor
@ -29,10 +29,10 @@ def process_exploit_telemetry(telemetry_json, _):
def update_network_with_exploit(edge: EdgeService, telemetry_json): def update_network_with_exploit(edge: EdgeService, telemetry_json):
telemetry_json["data"]["info"]["started"] = dateutil_parser.parse( telemetry_json["data"]["info"]["started"] = dateutil.parser.parse(
telemetry_json["data"]["info"]["started"] telemetry_json["data"]["info"]["started"]
) )
telemetry_json["data"]["info"]["finished"] = dateutil_parser.parse( telemetry_json["data"]["info"]["finished"] = dateutil.parser.parse(
telemetry_json["data"]["info"]["finished"] telemetry_json["data"]["info"]["finished"]
) )
new_exploit = copy.deepcopy(telemetry_json["data"]) new_exploit = copy.deepcopy(telemetry_json["data"])