forked from p15670423/monkey
Remove unused variable `os_is_linux` in `infection_monkey/post_breach/post_breach_handler.py`
This commit is contained in:
parent
35f4515d6e
commit
0dc6005114
|
@ -3,7 +3,6 @@ from multiprocessing.dummy import Pool
|
||||||
from typing import Sequence
|
from typing import Sequence
|
||||||
|
|
||||||
from infection_monkey.post_breach.pba import PBA
|
from infection_monkey.post_breach.pba import PBA
|
||||||
from infection_monkey.utils.environment import is_windows_os
|
|
||||||
|
|
||||||
LOG = logging.getLogger(__name__)
|
LOG = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
@ -16,7 +15,6 @@ class PostBreach(object):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.os_is_linux = not is_windows_os()
|
|
||||||
self.pba_list = self.config_to_pba_list()
|
self.pba_list = self.config_to_pba_list()
|
||||||
|
|
||||||
def execute_all_configured(self):
|
def execute_all_configured(self):
|
||||||
|
|
Loading…
Reference in New Issue