Skip to content

Commit e717732

Browse files
committed
cleanup
1 parent 763f32f commit e717732

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

mssql_python/cursor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1680,6 +1680,7 @@ def executemany(self, operation: str, seq_of_parameters: list) -> None:
16801680
sample_value = sample_row[col_index]
16811681
else:
16821682
sample_value = self._select_best_sample_value(column)
1683+
16831684
dummy_row = list(sample_row)
16841685
paraminfo = self._create_parameter_types_list(
16851686
sample_value, param_info, dummy_row, col_index, min_val=min_val, max_val=max_val

mssql_python/pybind/ddbc_bindings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2756,7 +2756,7 @@ SQLRETURN SQLGetData_wrap(SqlHandlePtr StatementHandle, SQLUSMALLINT colCount, p
27562756
}
27572757
break;
27582758
}
2759-
#endif
2759+
#endif
27602760
default:
27612761
std::ostringstream errorString;
27622762
errorString << "Unsupported data type for column - " << columnName << ", Type - "

0 commit comments

Comments
 (0)