mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 01:14:53 +01:00
python: fix signature of two wrapped libnotmuch functions
Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
This commit is contained in:
parent
ea54c4fdc7
commit
3a95f3fbc1
2 changed files with 2 additions and 2 deletions
|
@ -177,7 +177,7 @@ class Directory(object):
|
|||
|
||||
_destroy = nmlib.notmuch_directory_destroy
|
||||
_destroy.argtypes = [NotmuchDirectoryP]
|
||||
_destroy.argtypes = None
|
||||
_destroy.restype = None
|
||||
|
||||
def __del__(self):
|
||||
"""Close and free the Directory"""
|
||||
|
|
|
@ -172,7 +172,7 @@ class Threads(Python3StringMixIn):
|
|||
|
||||
_destroy = nmlib.notmuch_threads_destroy
|
||||
_destroy.argtypes = [NotmuchThreadsP]
|
||||
_destroy.argtypes = None
|
||||
_destroy.restype = None
|
||||
|
||||
def __del__(self):
|
||||
"""Close and free the notmuch Threads"""
|
||||
|
|
Loading…
Reference in a new issue