8000 chore(projects): fix typing for transfer method · python-gitlab/python-gitlab@0788fe6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0788fe6

Browse files
nejchJohnVillalovos
andcommitted
chore(projects): fix typing for transfer method
Co-authored-by: John Villalovos <john@sodarock.com>
1 parent 259668a commit 0788fe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitlab/v4/objects/projects.py

Lines changed: 1 addition & 1 deletion
< 5190 td data-grid-cell-id="diff-35c762fe5f0b56e895460a2a00b60a47ff76f8502d6b7fa474bf3503765f2d68-530-529-2" data-line-anchor="diff-35c762fe5f0b56e895460a2a00b60a47ff76f8502d6b7fa474bf3503765f2d68L530" data-selected="false" role="gridcell" style="background-color:var(--diffBlob-deletionLine-bgColor, var(--diffBlob-deletion-bgColor-line));padding-right:24px" tabindex="-1" valign="top" class="focusable-grid-cell diff-text-cell left-side-diff-cell border-right left-side">-
def transfer(self, to_namespace: str, **kwargs: Any) -> None:
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ def mirror_pull(self, **kwargs: Any) -> None:
527527

528528
@cli.register_custom_action("Project", ("to_namespace",))
529529
@exc.on_http_error(exc.GitlabTransferProjectError)
530
530+
def transfer(self, to_namespace: Union[int, str], **kwargs: Any) -> None:
531531
"""Transfer a project to the given namespace ID
532532
533533
Args:

0 commit comments

Comments
 (0)
0