From: Mark Bell Date: Mon, 12 Apr 2021 01:47:24 +0000 (+0100) Subject: Fixed typo in docstring X-Git-Tag: rel_1_4_8~15 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=refs%2Fpull%2F6246%2Fhead;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fixed typo in docstring --- diff --git a/test/dialect/mysql/test_types.py b/test/dialect/mysql/test_types.py index 3e8aa0fb54..355d774ac0 100644 --- a/test/dialect/mysql/test_types.py +++ b/test/dialect/mysql/test_types.py @@ -450,7 +450,7 @@ class TypeCompileTest(fixtures.TestBase, AssertsCompiledSQL): self.assert_compile(mysql.DATETIME(fsp=4), "DATETIME(4)") def test_time_generic(self): - """"Exercise TIME.""" + """Exercise TIME.""" self.assert_compile(mysql.TIME(), "TIME")