Skip to content

Commit

Permalink
#130 fixed duplicated prefix.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolay-r committed Jan 7, 2024
1 parent c2e01c0 commit 394a6f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arelight/predict/writer_sqlite3.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def write(self, header, contents_it, total=None):

content_header = header[1:]
SQLiteProvider.write(
columns=[f"col_{col_name}" for col_name in content_header],
columns=content_header,
target=self._target,
table_name=self.__table_name,
data2col_func=lambda data: data,
Expand Down

0 comments on commit 394a6f5

Please sign in to comment.