mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
python: fix set_sort/add_tag_exclude restype/argtypes typos
This commit is contained in:
parent
639d21d5b9
commit
7fe3062cf2
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue