Skip to main content

pass1

Return the first positional argument.

def pass1(
arg: Any,
*args: tuple,
**kwargs: dict
) - > Any

Return the first positional argument.

Parameters

NameTypeDescription
argAnyThe primary positional argument to be returned
*argstupleAdditional positional arguments which are ignored by the function
**kwargsdictArbitrary keyword arguments which are ignored by the function

Returns

TypeDescription
AnyThe first positional argument passed to the function