]> git.notmuchmail.org Git - notmuch/commitdiff
python: remove unused import of the json module
authorJustus Winter <4winter@informatik.uni-hamburg.de>
Thu, 17 May 2012 14:55:29 +0000 (16:55 +0200)
committerJustus Winter <4winter@informatik.uni-hamburg.de>
Thu, 17 May 2012 14:55:29 +0000 (16:55 +0200)
Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
bindings/python/notmuch/message.py

index 0cac09c1c133cee415cc62125b8262f6c0182e25..bdbe5012bd0f175eb69fc36603722198a4fa72b6 100644 (file)
@@ -41,10 +41,6 @@ from .tag import Tags
 from .filenames import Filenames
 
 import email
-try:
-    import simplejson as json
-except ImportError:
-    import json
 
 
 class Message(Python3StringMixIn):