summaryrefslogtreecommitdiff
path: root/gitlab/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/utils.py')
-rw-r--r--gitlab/utils.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/gitlab/utils.py b/gitlab/utils.py
index f549042..7b01d17 100644
--- a/gitlab/utils.py
+++ b/gitlab/utils.py
@@ -44,7 +44,11 @@ def response_content(
return None
-def copy_dict(dest: Dict[str, Any], src: Dict[str, Any]) -> None:
+def copy_dict(
+ *,
+ src: Dict[str, Any],
+ dest: Dict[str, Any],
+) -> None:
for k, v in src.items():
if isinstance(v, dict):
# Transform dict values to new attributes. For example: