From 19d2847616aeb1462db6a752c42123e90edd3fc6 Mon Sep 17 00:00:00 2001 From: Lucas Smolic Date: Wed, 7 Aug 2024 12:22:49 -0400 Subject: [PATCH] pedantic correction of oxford-comma for the true Python experience --- koans/about_string_manipulation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koans/about_string_manipulation.py b/koans/about_string_manipulation.py index 5204f29ba..9009baf73 100644 --- a/koans/about_string_manipulation.py +++ b/koans/about_string_manipulation.py @@ -14,7 +14,7 @@ def test_use_format_to_interpolate_variables(self): def test_formatted_values_can_be_shown_in_any_order_or_be_repeated(self): value1 = 'doh' value2 = 'DOH' - string = "The values are {1}, {0}, {0} and {1}!".format(value1, value2) + string = "The values are {1}, {0}, {0} and, {1}!".format(value1, value2) self.assertEqual(__, string) def test_any_python_expression_may_be_interpolated(self):