diff --git a/source/BUG/strings.py b/source/BUG/strings.py index 5cdfb0f..3d7de34 100644 --- a/source/BUG/strings.py +++ b/source/BUG/strings.py @@ -146,7 +146,7 @@ def join_strings(lst: list, delimiter: str) -> str: """ BUG039: join_strings should join a list of strings using the given delimiter, not concatenate them. """ - result = "".join(lst) + result = delimiter.join(lst) # I changed "" with delimiter return result