Skip to content

Commit b3873be

Browse files
author
cclauss
authored
noqa to silence flake8 on Python 3 only syntax
1 parent bfd52df commit b3873be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: data_structures/Trie/Trie.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def insert_many(self, words: [str]):
2121
for word in words:
2222
self.insert(word)
2323

24-
def insert(self, word: str):
24+
def insert(self, word: str): # noqa: F821 This syntax is Python 3 only
2525
"""
2626
Inserts a word into the Trie
2727
:param word: word to be inserted

0 commit comments

Comments
 (0)