pass1
Return the first positional argument.
def pass1(
arg: Any,
*args: tuple,
**kwargs: dict
) - > Any
Return the first positional argument.
Parameters
| Name | Type | Description |
|---|---|---|
| arg | Any | The primary positional argument to be returned |
| *args | tuple | Additional positional arguments which are ignored by the function |
| **kwargs | dict | Arbitrary keyword arguments which are ignored by the function |
Returns
| Type | Description |
|---|---|
Any | The first positional argument passed to the function |