Skip to main content

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

NameTypeDescription
*argsanyPositional arguments that will be ignored by the function
**kwargsanyKeyword arguments that will be ignored by the function

Returns

TypeDescription
nullAlways returns None as no operation is performed