aboutsummaryrefslogtreecommitdiff
path: root/bindings/python
diff options
context:
space:
mode:
authorhydrargyrum <dev@indigo.re>2019-03-30 10:31:58 +0100
committerDavid Bremner <david@tethera.net>2019-03-31 11:59:46 -0300
commit7fe3062cf289cc06a3b06934e76da00373d79523 (patch)
tree351263d84640e0f0ea6d6f894e9b88303077a0d2 /bindings/python
parent639d21d5b9b67883e027183614bedbeb805b3ba6 (diff)
python: fix set_sort/add_tag_exclude restype/argtypes typos
Diffstat (limited to 'bindings/python')
-rw-r--r--bindings/python/notmuch/query.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/python/notmuch/query.py b/bindings/python/notmuch/query.py
index 06c7b11b..cc70e2aa 100644
--- a/bindings/python/notmuch/query.py
+++ b/bindings/python/notmuch/query.py
@@ -108,7 +108,7 @@ class Query(object):
_set_sort = nmlib.notmuch_query_set_sort
_set_sort.argtypes = [NotmuchQueryP, c_uint]
- _set_sort.argtypes = None
+ _set_sort.restype = None
def set_sort(self, sort):
"""Set the sort order future results will be delivered in
@@ -121,7 +121,7 @@ class Query(object):
_exclude_tag = nmlib.notmuch_query_add_tag_exclude
_exclude_tag.argtypes = [NotmuchQueryP, c_char_p]
- _exclude_tag.resttype = None
+ _exclude_tag.restype = None
def exclude_tag(self, tagname):
"""Add a tag that will be excluded from the query results by default.