From: j00356287 Date: Sat, 25 Jul 2020 20:33:25 +0000 (-0400) Subject: Remove comment code lines X-Git-Tag: rel_1_4_0b1~212^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=448c1aef216e274d21deb03fdcafad1289f7951b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Remove comment code lines PyODBCConnector.initialize just super from Connector, no need to redeclare, so I guess that's why they are commented before. ### Description Remove the useless comment code lines. ### Checklist This pull request is: - [x] A documentation / typographical error fix - Good to go, no issue or tests are needed - [ ] 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: #` 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: #` in the commit message - please include tests. **Have a nice day!** Closes: #5475 Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/5475 Pull-request-sha: 23176a7f0316d74407492c2bb299c88924ed0868 Change-Id: If94bb6275c30015e3aaa1519471b7d9bcda18bf8 --- diff --git a/lib/sqlalchemy/connectors/pyodbc.py b/lib/sqlalchemy/connectors/pyodbc.py index 57a1c54fb4..96ac0c1f1e 100644 --- a/lib/sqlalchemy/connectors/pyodbc.py +++ b/lib/sqlalchemy/connectors/pyodbc.py @@ -120,9 +120,6 @@ class PyODBCConnector(Connector): else: return False - # def initialize(self, connection): - # super(PyODBCConnector, self).initialize(connection) - def _dbapi_version(self): if not self.dbapi: return ()