From 9fcca7b9a4296f2a30d7a820b4e7454a0042f7e6 Mon Sep 17 00:00:00 2001 From: Shreya Malviya Date: Wed, 8 Dec 2021 21:26:09 +0530 Subject: [PATCH] Agent: Remove unused get_hop_distance_to_island function --- monkey/infection_monkey/config.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/monkey/infection_monkey/config.py b/monkey/infection_monkey/config.py index 1b1ab6612..557ecdf0f 100644 --- a/monkey/infection_monkey/config.py +++ b/monkey/infection_monkey/config.py @@ -231,8 +231,5 @@ class Configuration(object): ########################### export_monkey_telems = False - def get_hop_distance_to_island(self): - return self.max_depth - self.depth - WormConfiguration = Configuration()