Skip to content

Commit

Permalink
docs: use read_only=False so that example doesn't raise an exceptio…
Browse files Browse the repository at this point in the history
…n. (#1079)
  • Loading branch information
dhirschfeld authored Sep 2, 2024
1 parent 0e3ea01 commit d0688b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ You can configure DuckDB by passing `connect_args` to the create_engine function
create_engine(
'duckdb:///:memory:',
connect_args={
'read_only': True,
'read_only': False,
'config': {
'memory_limit': '500mb'
}
Expand Down

0 comments on commit d0688b4

Please sign in to comment.