Skip to content

Commit b9beeb0

Browse files
committed
Remove redundant space
1 parent 737be0e commit b9beeb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb_sqlalchemy/sqlalchemy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ def visit_create_index(self, create, include_schema=False, include_table_schema=
466466

467467
text = f"ALTER TABLE {table_name} ADD INDEX {index_name} GLOBAL"
468468

469-
text += " SYNC " if not ydb_opts.get("async", False) else " ASYNC"
469+
text += " SYNC" if not ydb_opts.get("async", False) else " ASYNC"
470470

471471
columns = {self.preparer.format_column(col) for col in index.columns.values()}
472472
cover_columns = {

0 commit comments

Comments
 (0)