We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b45a6d commit ae09865Copy full SHA for ae09865
strings/join.py
@@ -8,7 +8,7 @@ def join(separator: str, separated: list[str]) -> str:
8
:param separated: A list of strings to join.
9
10
:return: A single string with elements joined by the separator.
11
-
+
12
:raises Exception: If any element in the list is not a string.
13
"""
14
if not all(isinstance(word_or_phrase, str) for word_or_phrase in separated):
0 commit comments