Start documenting our Trie implementation

This commit is contained in:
Ian Cordasco 2016-02-01 20:09:15 -06:00
parent 51d11d1a30
commit 5dc7440a2b
6 changed files with 7 additions and 4 deletions

View file

@ -1,7 +1,7 @@
"""Unit tests for the Notifier object."""
import pytest
from flake8 import notifier
from flake8.plugins import notifier
class _Listener(object):

View file

@ -1,5 +1,5 @@
"""Unit test for the _trie module."""
from flake8 import _trie as trie
from flake8.plugins import _trie as trie
class TestTrie(object):