Move trie implementation out of plugins

We're going to use it for statistics, so it no longer belongs hidden in
the flake8.plugins namespace.
This commit is contained in:
Ian Cordasco 2016-07-10 09:29:06 -05:00
parent edd84fba52
commit 2660ddd031
No known key found for this signature in database
GPG key ID: 656D3395E4A9791A
4 changed files with 4 additions and 4 deletions

View file

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