forked from p15670423/monkey
Agent: Remove unused imports
This commit is contained in:
parent
a8c222b610
commit
3b4e762997
|
@ -1,7 +1,7 @@
|
|||
import logging
|
||||
import random
|
||||
import string
|
||||
from pathlib import Path, PurePosixPath, PureWindowsPath, PurePath
|
||||
from pathlib import PurePath, PurePosixPath, PureWindowsPath
|
||||
from typing import Any, Mapping
|
||||
|
||||
from infection_monkey.model import VictimHost
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import logging
|
||||
from contextlib import closing
|
||||
from typing import Dict, Iterable, Optional, Set, Tuple, Any
|
||||
from typing import Any, Dict, Iterable, Optional, Set, Tuple
|
||||
|
||||
from requests import head, Response
|
||||
from requests import head
|
||||
from requests.exceptions import ConnectionError, Timeout
|
||||
|
||||
from infection_monkey.i_puppet import (
|
||||
|
|
Loading…
Reference in New Issue