We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f5c97f commit 2d4240aCopy full SHA for 2d4240a
mysql_to_sqlite3/transporter.py
@@ -202,7 +202,7 @@ def _translate_type_from_mysql_to_sqlite(
202
# This could be optimized even further, however is seems adequate.
203
match: t.Optional[t.Match[str]] = cls._valid_column_type(_column_type)
204
if not match:
205
- raise ValueError(f'"${_column_type}" is not a valid column_type!')
+ raise ValueError(f'"{_column_type}" is not a valid column_type!')
206
207
data_type: str = match.group(0).upper()
208
0 commit comments