mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-12 23:54:17 +00:00
Add pep8-naming to flake8 linting
This commit is contained in:
parent
a3a2539a23
commit
c60546e896
5 changed files with 13 additions and 12 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue