noop
No operation.
Takes any arguments/keyword arguments and does nothing.
def noop(
*args: any,
**kwargs: any
) - > null
No operation. Takes any arguments/keyword arguments and does nothing.
Parameters
| Name | Type | Description |
|---|---|---|
| *args | any | Positional arguments that will be ignored by the function |
| **kwargs | any | Keyword arguments that will be ignored by the function |
Returns
| Type | Description |
|---|---|
null | Always returns None as no operation is performed |