diff --git a/pyproject.toml b/pyproject.toml index a3e50d1..e6c71e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "relationalize" -version = "0.1.8" +version = "0.1.9" authors = [ { name="Henry Jones", email="henry.jones@tulip.co" }, ] diff --git a/relationalize/sql_dialects.py b/relationalize/sql_dialects.py index 09863ad..d091ae0 100644 --- a/relationalize/sql_dialects.py +++ b/relationalize/sql_dialects.py @@ -1,6 +1,6 @@ from abc import ABC, abstractmethod from collections.abc import Mapping -from typing import Generic, Literal, NewType, TypeVar, override +from typing import Generic, Literal, NewType, TypeVar from relationalize.types import SupportedColumnType @@ -65,7 +65,6 @@ class PostgresDialect(SQLDialect[PostgresColumn]): """.strip() @staticmethod - @override def generate_ddl_column(column_name: str, column_type: PostgresColumn): cleaned_column_name = column_name.replace('"', '""') return DDLColumn(f'"{cleaned_column_name}" {column_type}')