fix param name of projectcard's move function (#1451)

* fix param name of projectcard's move function

* fix test failure
This commit is contained in:
chloe jungah kim
2020-04-16 21:38:19 +10:00
committed by GitHub
parent 83bef0f7b2
commit bafc4efc76
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -150,7 +150,7 @@ class ProjectCard(github.GithubObject.CompletableGithubObject):
), column
post_parameters = {
"position": position,
"column": column.id
"column_id": column.id
if isinstance(column, github.ProjectColumn.ProjectColumn)
else column,
}