Add pep8-naming to flake8 linting

This commit is contained in:
Ian Stapleton Cordasco 2017-11-26 08:46:49 -06:00
parent a3a2539a23
commit c60546e896
No known key found for this signature in database
GPG key ID: C9D7A2604B4FCB2A
5 changed files with 13 additions and 12 deletions

View file

@ -83,7 +83,7 @@ class TestTrieNode(object):
assert child.prefix == 'a'
assert child.data == 'a is for Apple'
def test_find_prefix_returns_None_when_no_children_have_the_prefix(self):
def test_find_prefix_returns_none_when_no_children_have_the_prefix(self):
"""Verify we receive None from find_prefix for missing children."""
node = trie.TrieNode('E', 'E is for Eat', children={
'a': trie.TrieNode('a', 'a is for Apple')