diff options
author | Stephen Finucane <stephen@that.guru> | 2019-02-25 11:02:24 +0000 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2019-02-25 11:03:59 +0000 |
commit | 17596b5f3c3cb0b58107af1d426accaf29c7e519 (patch) | |
tree | 5d40351b148023e3e6a737cebfed4a1a88228921 /doc/development/tutorials/examples/todo.py | |
parent | a35040c454aeeb87b3e5681360f1a7b54811cd62 (diff) | |
download | sphinx-git-17596b5f3c3cb0b58107af1d426accaf29c7e519.tar.gz |
docs: Remove unused imports
These were causing flake8 failures.
Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'doc/development/tutorials/examples/todo.py')
-rw-r--r-- | doc/development/tutorials/examples/todo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/tutorials/examples/todo.py b/doc/development/tutorials/examples/todo.py index 2bcf6788f..6ba39944f 100644 --- a/doc/development/tutorials/examples/todo.py +++ b/doc/development/tutorials/examples/todo.py @@ -1,8 +1,8 @@ from docutils import nodes from docutils.parsers.rst import Directive -from sphinx.util.docutils import SphinxDirective from sphinx.locale import _ +from sphinx.util.docutils import SphinxDirective class todo(nodes.Admonition, nodes.Element): |