]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/python/notmuch/query.py
python: move the exception classes into error.py
[notmuch] / bindings / python / notmuch / query.py
index 15ed153e94e49cc4c8fa6d9f7d8ead0dc5052a72..ddaf8e08f5651c68967096814a8c84436d8ebab6 100644 (file)
@@ -26,11 +26,13 @@ from notmuch.globals import (
     NotmuchThreadsP,
     NotmuchDatabaseP,
     NotmuchMessagesP,
+)
+from .errors import (
     NullPointerError,
     NotInitializedError,
 )
-from notmuch.thread import Threads
-from notmuch.message import Messages
+from .threads import Threads
+from .messages import Messages
 
 
 class Query(object):