According to the docs, create_view accepts a replace boolean argument and it's visible in master.
When I install it using pip, however, the create_view initializer looks like this (in both 0.41.1 and 0.41.0):
def create_view(
name,
selectable,
metadata,
cascade_on_drop=True
):
When run, it gives the error: TypeError: create_view() got an unexpected keyword argument 'replace'
Any ideas?
According to the docs,
create_viewaccepts areplaceboolean argument and it's visible in master.When I install it using pip, however, the
create_viewinitializer looks like this (in both0.41.1and0.41.0):When run, it gives the error:
TypeError: create_view() got an unexpected keyword argument 'replace'Any ideas?