summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/mysql
diff options
context:
space:
mode:
authorsudoii <56720445+lvillis@users.noreply.github.com>2022-01-06 12:20:31 -0500
committersqla-tester <sqla-tester@sqlalchemy.org>2022-01-06 12:20:31 -0500
commit4fab3103b6be4ab53828a4d39824ffbb0aa9c976 (patch)
treee28b281e3ca32b70b873d5011627326517221145 /lib/sqlalchemy/dialects/mysql
parent21ee595ba9ef3e7abc8982fac7bf488c904cf9c9 (diff)
downloadsqlalchemy-4fab3103b6be4ab53828a4d39824ffbb0aa9c976.tar.gz
fix(dialects.mysql): repeatedly exported DECIMAL
<!-- Provide a general summary of your proposed changes in the Title field above --> ### Description <!-- Describe your changes in detail --> This is a typo, DECIMAL has been exported repeatedly, so this fix does not need to be tested. https://github.com/sqlalchemy/sqlalchemy/blob/21ee595ba9ef3e7abc8982fac7bf488c904cf9c9/lib/sqlalchemy/dialects/mysql/__init__.py#L68 https://github.com/sqlalchemy/sqlalchemy/blob/21ee595ba9ef3e7abc8982fac7bf488c904cf9c9/lib/sqlalchemy/dialects/mysql/__init__.py#L71 ``` # Intercepted code block # sqlalchemy/lib/sqlalchemy/dialects/mysql/__init__.py __all__ = ( "BIGINT", "BINARY", "BIT", "BLOB", "BOOLEAN", "CHAR", "DATE", "DATETIME", "DECIMAL", # Line 68 "DOUBLE", "ENUM", "DECIMAL", # Line 71 ``` ### Checklist <!-- go over following points. check them with an `x` if they do apply, (they turn into clickable checkboxes once the PR is submitted, so no need to do everything at once) --> This pull request is: - [ ] A documentation / typographical error fix - Good to go, no issue or tests are needed - [x] A short code fix - please include the issue number, and create an issue if none exists, which must include a complete example of the issue. one line code fixes without an issue and demonstration will not be accepted. - Please include: `Fixes: #<issue number>` in the commit message - please include tests. one line code fixes without tests will not be accepted. - [ ] A new feature implementation - please include the issue number, and create an issue if none exists, which must include a complete example of how the feature would look. - Please include: `Fixes: #<issue number>` in the commit message - please include tests. **Have a nice day!** Closes: #7543 Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/7543 Pull-request-sha: 889d05c444264bf1b6d11386459d3360cc529d27 Change-Id: I0898af68548b3131388e50d906f216a2c4af4486
Diffstat (limited to 'lib/sqlalchemy/dialects/mysql')
-rw-r--r--lib/sqlalchemy/dialects/mysql/__init__.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/mysql/__init__.py b/lib/sqlalchemy/dialects/mysql/__init__.py
index 389720213..23c0faad6 100644
--- a/lib/sqlalchemy/dialects/mysql/__init__.py
+++ b/lib/sqlalchemy/dialects/mysql/__init__.py
@@ -68,7 +68,6 @@ __all__ = (
"DECIMAL",
"DOUBLE",
"ENUM",
- "DECIMAL",
"FLOAT",
"INTEGER",
"INTEGER",