## Description of the problem, including code/CLI snippet When creating a project on behalf of user `u` as an admin, `initialize_with_readme` is ignored ```python In [32]: init_with_readme = True In [33]: ...: project_data = { ...: "name": project_name, ...: "namespace_id": group_id, ...: "initialize_with_readme": init_with_readme, ...: "visibility": "internal", ...: } In [34]: r = u.projects.create(project_data) In [35]: r.visibility Out[35]: 'internal' ``` I think this might be because the attr is not declared in [users.py](https://github.com/python-gitlab/python-gitlab/blob/12d195a35a1bd14947fbd6688a8ad1bd3fc21617/gitlab/v4/objects/users.py#L608) like it is in [projects.py](https://github.com/python-gitlab/python-gitlab/blob/12d195a35a1bd14947fbd6688a8ad1bd3fc21617/gitlab/v4/objects/projects.py#L617)? Looks like an extension of https://github.com/python-gitlab/python-gitlab/issues/765 in a different object? ## Expected Behavior Repo is initialized with a default readme ## Actual Behavior Repo is not initialized ## Specifications - python-gitlab version: tested on 3.12.0 - API version you are using (v3/v4): v4 - Gitlab server version (or gitlab.com): [v16.10.4-ee](https://gitlab.com/gitlab-org/gitlab/-/tags/v16.10.4-ee)