diff --git a/aws_advanced_python_wrapper/driver_dialect_codes.py b/aws_advanced_python_wrapper/driver_dialect_codes.py index 7abeb02e..18fdd2e6 100644 --- a/aws_advanced_python_wrapper/driver_dialect_codes.py +++ b/aws_advanced_python_wrapper/driver_dialect_codes.py @@ -13,7 +13,6 @@ # limitations under the License. class DriverDialectCodes: - SQLALCHEMY = "sqlalchemy" PSYCOPG = "psycopg" MYSQL_CONNECTOR_PYTHON = "mysql-connector-python" GENERIC = "generic" diff --git a/docs/using-the-python-driver/DriverDialects.md b/docs/using-the-python-driver/DriverDialects.md index f0f4d1c7..8fe3c25d 100644 --- a/docs/using-the-python-driver/DriverDialects.md +++ b/docs/using-the-python-driver/DriverDialects.md @@ -26,7 +26,6 @@ Driver Dialect codes specify which driver dialect class to use. |--------------------------|--------------------------| | `PSYCOPG` | `psycopg` | | `MYSQL_CONNECTOR_PYTHON` | `mysql-connector-python` | -| `SQLALCHEMY` | `sqlalchemy` | | `GENERIC` | `generic` | ## Custom Driver Dialects