diff options
author | Adam Reid <areid@navtech.aero> | 2016-05-09 14:25:28 -0400 |
---|---|---|
committer | Adam Reid <areid@navtech.aero> | 2016-05-09 14:25:28 -0400 |
commit | 111b7d9a4ee60176714b950d7ed9da86c6051feb (patch) | |
tree | 690d25b2955d2ab200026e1545a589ba091abf71 /gitlab/objects.py | |
parent | 5fe7e27bb16a06271f87bf19473b8604df92b4f7 (diff) | |
download | gitlab-111b7d9a4ee60176714b950d7ed9da86c6051feb.tar.gz |
Remove unnecessary canUpdate property from ProjectIssuesNote
Diffstat (limited to 'gitlab/objects.py')
-rw-r--r-- | gitlab/objects.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py index 9311611..6924341 100644 --- a/gitlab/objects.py +++ b/gitlab/objects.py @@ -935,7 +935,6 @@ class ProjectHookManager(BaseManager): class ProjectIssueNote(GitlabObject): _url = '/projects/%(project_id)s/issues/%(issue_id)s/notes' _constructorTypes = {'author': 'User'} - canUpdate = True canDelete = False requiredUrlAttrs = ['project_id', 'issue_id'] requiredCreateAttrs = ['body'] |