From 2ad21322613be99d3e806c27c19f96741701c302 Mon Sep 17 00:00:00 2001 From: Jake Vanderplas Date: Thu, 18 Jul 2013 07:21:49 -0700 Subject: [PATCH] ActivatableTransformer -> Transformer --- liquid_tags/notebook.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/liquid_tags/notebook.py b/liquid_tags/notebook.py index 6887298..657ec78 100644 --- a/liquid_tags/notebook.py +++ b/liquid_tags/notebook.py @@ -60,7 +60,7 @@ from IPython.nbconvert.exporters import BasicHTMLExporter from IPython.config import Config from IPython.nbformat import current as nbformat -from IPython.nbconvert.transformers import ActivatableTransformer +from IPython.nbconvert.transformers import Transformer from IPython.utils.traitlets import Integer from copy import deepcopy @@ -155,7 +155,7 @@ class SliceIndex(Integer): return super(SliceIndex, self).validate(obj, value) -class SubCell(ActivatableTransformer): +class SubCell(Transformer): """A transformer to select a slice of the cells of a notebook""" start = SliceIndex(0, config=True, help="first cell of notebook to be converted")