Skip to content

Commit

Permalink
Remove link to deleted section in README (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmynter authored Sep 21, 2023
1 parent 6d97209 commit 32aacd7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,13 @@ fs = LakeFSFileSystem(host="localhost:8000", create_branch_ok=False)
```

If set to `create_branch_ok = False`, adressing non-existing branches causes an error.
The flag can also be set in [scoped filesystem behaviour changes](#scoped-filesystem-behavior-changes) .
The flag can also be set in scoped filesystem behaviour changes. Like so

```python
with fs.scope(create_branch_ok=False)
fs.put('lakefs://quickstart/test/lakes.parquet')
```
This code throws an error should the `test` branch not exist.

### Paths and URIs

Expand Down

0 comments on commit 32aacd7

Please sign in to comment.