Skip to content

Commit ae09865

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

strings/join.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def join(separator: str, separated: list[str]) -> str:
88
:param separated: A list of strings to join.
99
1010
:return: A single string with elements joined by the separator.
11-
11+
1212
:raises Exception: If any element in the list is not a string.
1313
"""
1414
if not all(isinstance(word_or_phrase, str) for word_or_phrase in separated):

0 commit comments

Comments
 (0)