diff options
Diffstat (limited to 'gitlab/cli.py')
-rw-r--r-- | gitlab/cli.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab/cli.py b/gitlab/cli.py index a48b53b..b9a7574 100644 --- a/gitlab/cli.py +++ b/gitlab/cli.py @@ -52,8 +52,8 @@ __F = TypeVar("__F", bound=Callable[..., Any]) def register_custom_action( cls_names: Union[str, Tuple[str, ...]], - mandatory: Tuple[str, ...] = tuple(), - optional: Tuple[str, ...] = tuple(), + mandatory: Tuple[str, ...] = (), + optional: Tuple[str, ...] = (), custom_action: Optional[str] = None, ) -> Callable[[__F], __F]: def wrap(f: __F) -> __F: |