- Notifications
You must be signed in to change notification settings - Fork673
path
argument of "List repository commits" is overriden#2845
-
Description of the problem, including code/CLI snippetI'm unable to use the Is there a workaround for this? Currently planning on using the |
BetaWas this translation helpful?Give feedback.
All reactions
From:https://python-gitlab.readthedocs.io/en/stable/api-usage.html
You can use thequery_parameters
argument to send arguments that would conflict with python or python-gitlab when using them as kwargs:
gl.user_activities.list(from='2019-01-01', iterator=True) ## invalidgl.user_activities.list(query_parameters={'from': '2019-01-01'}, iterator=True) # OK
Replies: 1 comment
-
From:https://python-gitlab.readthedocs.io/en/stable/api-usage.html You can use the
|
BetaWas this translation helpful?Give feedback.
All reactions
This discussion was converted from issue #2844 on April 28, 2024 10:39.