Remove unused `IP_ADDR_RE`, and `IP_ADDR_PARENTHESES_RE` from `infection_monkey/network/tools.py`

This commit is contained in:
Shreya 2021-05-06 15:54:58 +05:30
parent 3a8591ee00
commit dd1eaab6f8
1 changed files with 0 additions and 2 deletions

View File

@ -11,8 +11,6 @@ from infection_monkey.network.info import get_routes, local_ips
DEFAULT_TIMEOUT = 10
BANNER_READ = 1024
IP_ADDR_RE = r"\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}"
IP_ADDR_PARENTHESES_RE = r"\(" + IP_ADDR_RE + r"\)"
LOG = logging.getLogger(__name__)
SLEEP_BETWEEN_POLL = 0.5