From 1dc80a609e952f85e6d005162270bcf5598ab84f Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sat, 21 Dec 2013 12:48:15 -0800 Subject: [PATCH] Drop unused traitlet imports --- IPython/nbconvert/exporters/python.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/IPython/nbconvert/exporters/python.py b/IPython/nbconvert/exporters/python.py index cd3880d04..5c7dbf464 100644 --- a/IPython/nbconvert/exporters/python.py +++ b/IPython/nbconvert/exporters/python.py @@ -12,8 +12,6 @@ # Imports #----------------------------------------------------------------------------- -from IPython.utils.traitlets import Unicode - from .templateexporter import TemplateExporter #-----------------------------------------------------------------------------