aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mitmproxy/command.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/mitmproxy/command.py b/mitmproxy/command.py
index 24f0decf..a8a2f3dc 100644
--- a/mitmproxy/command.py
+++ b/mitmproxy/command.py
@@ -13,11 +13,6 @@ from mitmproxy import exceptions
import mitmproxy.types
-@functools.lru_cache(maxsize=128)
-def _parse_cmd(cmdstr: str):
- return parts
-
-
def verify_arg_signature(f: typing.Callable, args: list, kwargs: dict) -> None:
sig = inspect.signature(f)
try: