⚗️ add regex and shell command di function

This commit is contained in:
yanyongyu
2021-12-14 22:40:47 +08:00
parent 329a1fd226
commit de7c51a518
4 changed files with 68 additions and 30 deletions

View File

@ -8,7 +8,6 @@ from pydantic.typing import ForwardRef, evaluate_forwardref
def get_typed_signature(call: Callable[..., Any]) -> inspect.Signature:
signature = inspect.signature(call)
globalns = getattr(call, "__globals__", {})
print(signature.parameters)
typed_params = [
inspect.Parameter(
name=param.name,