aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings/python/notmuch/threads.py
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/python/notmuch/threads.py')
-rw-r--r--bindings/python/notmuch/threads.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/bindings/python/notmuch/threads.py b/bindings/python/notmuch/threads.py
index 9d305e23..690206ef 100644
--- a/bindings/python/notmuch/threads.py
+++ b/bindings/python/notmuch/threads.py
@@ -20,11 +20,13 @@ Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>'
from notmuch.globals import (
nmlib,
Python3StringMixIn,
- NullPointerError,
- NotInitializedError,
NotmuchThreadP,
NotmuchThreadsP,
)
+from .errors import (
+ NullPointerError,
+ NotInitializedError,
+)
from .thread import Thread
class Threads(Python3StringMixIn):