Skip to content

Commit fbfab7a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f42064d commit fbfab7a

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

strings/anagrams.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ def anagram(my_word: str) -> list[str]:
2525
"""Return every anagram of the given word"""
2626
return word_by_signature[signature(my_word)]
2727

28+
2829
# --- Load words from file ---
2930
data: str = Path(__file__).parent.joinpath("words.txt").read_text(encoding="utf-8")
3031
word_list = sorted({word.strip().lower() for word in data.splitlines()})

0 commit comments

Comments
 (0)