Skip to content

Commit

Permalink
flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
akurdyukov committed Jan 22, 2024
1 parent b8b0619 commit 5d59385
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clickhouse_sqlalchemy/drivers/native/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ def _prepare(self, context=None):
if self._stream_results and execute_iter:
execute = execute_iter
settings = settings or {}
settings['max_block_size'] = execution_options.get('max_row_buffer', 1000)
settings['max_block_size'] = (
execution_options.get('max_row_buffer', 1000))

execute_kwargs = {
'settings': settings,
Expand Down

0 comments on commit 5d59385

Please sign in to comment.