Skip to content

Commit

Permalink
Fix Python documentation
Browse files Browse the repository at this point in the history
Fixes #4030
  • Loading branch information
szarnyasg committed Nov 12, 2024
1 parent cf92f0c commit 514861c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/api/python/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,11 @@ To load [community extensions]({% link docs/extensions/community_extensions.md %

For example, install and load the `h3` community extension as follows:

```python
```python
import duckdb

con = duckdb.connect()
con.install_extension("h3", respository="community")
con.install_extension("h3", repository="community")
con.load_extension("h3")
```

Expand Down

0 comments on commit 514861c

Please sign in to comment.