From a0ef36727e8c7910ddec3941dcd0ead7cc3a44c7 Mon Sep 17 00:00:00 2001 From: Henrique Date: Sat, 16 Nov 2019 09:18:32 -0500 Subject: [PATCH] Forgot to remove the empty `_parse_cmd` function --- mitmproxy/command.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/mitmproxy/command.py b/mitmproxy/command.py index 24f0decff..a8a2f3dca 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: