Skip to content

Commit 2d4240a

Browse files
committed
🐛 fix invalid column_type error message
1 parent 2f5c97f commit 2d4240a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mysql_to_sqlite3/transporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def _translate_type_from_mysql_to_sqlite(
202202
# This could be optimized even further, however is seems adequate.
203203
match: t.Optional[t.Match[str]] = cls._valid_column_type(_column_type)
204204
if not match:
205-
raise ValueError(f'"${_column_type}" is not a valid column_type!')
205+
raise ValueError(f'"{_column_type}" is not a valid column_type!')
206206

207207
data_type: str = match.group(0).upper()
208208

0 commit comments

Comments
 (0)