Skip to content

Commit b21b4ad

Browse files
committed
update disallowed fields
1 parent 46f9899 commit b21b4ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mpcontribs-client/mpcontribs/client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ def update_project(self, update: dict, name: Optional[str] = None):
12271227
"initialize client with project or set `name` argument!"
12281228
)
12291229

1230-
disallowed = ["is_approved", "stats", "columns", "is_public", "owner"]
1230+
disallowed = ["stats", "columns"]
12311231
for k in list(update.keys()):
12321232
if k in disallowed:
12331233
logger.warning(f"removing `{k}` from update - not allowed.")

0 commit comments

Comments
 (0)