Skip to content

Commit f74dcbe

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

strings/check_pangram.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ def check_pangram(input_str: str) -> bool:
1111
>>> check_pangram("")
1212
False
1313
"""
14-
return {c for c in input_str.lower() if c.isalpha()} == set("abcdefghijklmnopqrstuvwxyz")
14+
return {c for c in input_str.lower() if c.isalpha()} == set(
15+
"abcdefghijklmnopqrstuvwxyz"
16+
)
1517

1618

1719
if __name__ == "__main__":

0 commit comments

Comments
 (0)