diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2022-01-11 19:02:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2022-01-11 19:02:22 +0000 |
commit | a869dc8fe3cd579ed9bab665d215a6c3e3d8a4ca (patch) | |
tree | fd4e7eb4dac959d80599179d1ac9d07f5ff3f957 /lib/sqlalchemy/sql/compiler.py | |
parent | 71b6425db3517fc6194a349e6cc5abea851c7f35 (diff) | |
parent | 3a23e8ed29180e914883a263ec83373ecbd02efa (diff) | |
download | sqlalchemy-a869dc8fe3cd579ed9bab665d215a6c3e3d8a4ca.tar.gz |
Merge "remove internal use of metaclasses" into main
Diffstat (limited to 'lib/sqlalchemy/sql/compiler.py')
-rw-r--r-- | lib/sqlalchemy/sql/compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 697550df4..cb10811c6 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -503,7 +503,7 @@ class Compiled: return self.construct_params() -class TypeCompiler(metaclass=util.EnsureKWArgType): +class TypeCompiler(util.EnsureKWArg): """Produces DDL specification for TypeEngine objects.""" ensure_kwarg = r"visit_\w+" |