adapt typing to newest version of SQLAlchemy

This commit is contained in:
Sarah Hoffmann
2023-11-17 10:08:54 +01:00
parent 07120f9af5
commit d545554615
2 changed files with 2 additions and 2 deletions

View File

@@ -118,4 +118,4 @@ class CopyBuffer:
"""
if self.buffer.tell() > 0:
self.buffer.seek(0)
cur.copy_from(self.buffer, table, columns=columns) # type: ignore[arg-type]
cur.copy_from(self.buffer, table, columns=columns)