with python-gitlab I can create and update merge requests in GitLab.
However there is not much documentation on how to tick the "Delete source branch"
I tried with
mr.attributes['should_remove_source_branch'] = True
and with
mr.should_remove_source_branch(True)
which does not cause any error but there is no change to the merger request after
mr.save()
How to correctly set the "Delete source branch" tick ?
for those finding the question.
it looks like there is kind of a bug in gitlab as the code below just works and no additional step is needed for the setting on other projects