Skip to content

Commit

Permalink
Updated insert script
Browse files Browse the repository at this point in the history
  • Loading branch information
ankita-orchestral committed Jan 8, 2024
1 parent c28644f commit b6860d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion actions/insert.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ def run(self, **kwargs):
autoload_with=self.engine)

# Execute the insert query
conn.execute(sql_table.insert(inline=True),
conn.execute(
sql_table.insert(inline=True), # pylint: disable-msg=no-value-for-parameter
insert_data)

return True

0 comments on commit b6860d2

Please sign in to comment.