You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "/tmp/home/.local/lib/python3.10/site-packages/dataset/table.py", line 628, in find
query = self.table.select(whereclause=args, limit=_limit, offset=_offset)
File "/tmp/home/.local/lib/python3.10/site-packages/dataset/table.py", line 63, in table
self._sync_table(())
File "/tmp/home/.local/lib/python3.10/site-packages/dataset/table.py", line 324, in _sync_table
self._reflect_table()
File "/tmp/home/.local/lib/python3.10/site-packages/dataset/table.py", line 306, in _reflect_table
self.name, self.db.metadata, schema=self.db.schema, autoload=True
File "/tmp/home/.local/lib/python3.10/site-packages/dataset/database.py", line 109, in metadata
return MetaData(schema=self.schema, bind=self.executable)
TypeError: MetaData.__init__() got an unexpected keyword argument 'bind'
There is a deprecation warning in 1.4 version https://docs.sqlalchemy.org/en/14/core/metadata.html#sqlalchemy.schema.MetaData.bind
And it's gone in 2.0 https://docs.sqlalchemy.org/en/20/core/metadata.html#sqlalchemy.schema.MetaData
The text was updated successfully, but these errors were encountered: