From: hydrargyrum Date: Sat, 30 Mar 2019 09:31:58 +0000 (+0100) Subject: python: fix set_sort/add_tag_exclude restype/argtypes typos X-Git-Tag: archive/debian/0.29_rc0-1~116 X-Git-Url: https://git.cworth.org/git?p=notmuch;a=commitdiff_plain;h=7fe3062cf289cc06a3b06934e76da00373d79523 python: fix set_sort/add_tag_exclude restype/argtypes typos --- 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.