diff --git a/README.md b/README.md index e55dd62..40cda4e 100644 --- a/README.md +++ b/README.md @@ -1029,7 +1029,7 @@ False #### Getting the number of parameters of a function: ```python from inspect import signature -sig = signature() +sig = signature() no_of_params = len(sig.parameters) ```