Skip to content

Commit

Permalink
Update anagrams.py
Browse files Browse the repository at this point in the history
kyu_5/where_my_anagrams_at/anagrams.py:10 in public function `anagrams`:
        D403: First word of the first line should be properly capitalized ('Anagrams', not 'anagrams')

        The [first line of a] docstring is a phrase ending in a period.
  • Loading branch information
ikostan committed Dec 13, 2024
1 parent 2e3e4d4 commit 2cf4644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kyu_5/where_my_anagrams_at/anagrams.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

def anagrams(word, words) -> list:
"""
anagrams function.
Anagrams function.
A function that will find all the anagrams of a word
from a list. You will be given two inputs a word and
Expand Down

0 comments on commit 2cf4644

Please sign in to comment.