diff options
Diffstat (limited to 'lib/sqlalchemy/orm/context.py')
-rw-r--r-- | lib/sqlalchemy/orm/context.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/orm/context.py b/lib/sqlalchemy/orm/context.py index 0c1d16d0e..012db36c2 100644 --- a/lib/sqlalchemy/orm/context.py +++ b/lib/sqlalchemy/orm/context.py @@ -1043,7 +1043,7 @@ class ORMSelectCompileState(ORMCompileState, SelectState): statement_hints=self.select_statement._statement_hints, correlate=self.correlate, correlate_except=self.correlate_except, - **self._select_args + **self._select_args, ) inner = inner.alias() @@ -1083,7 +1083,7 @@ class ORMSelectCompileState(ORMCompileState, SelectState): statement, *self.compound_eager_adapter.copy_and_process( unwrapped_order_by - ) + ), ) statement.order_by.non_generative(statement, *self.eager_order_by) @@ -1121,7 +1121,7 @@ class ORMSelectCompileState(ORMCompileState, SelectState): statement_hints=self.select_statement._statement_hints, correlate=self.correlate, correlate_except=self.correlate_except, - **self._select_args + **self._select_args, ) if self.eager_order_by: |