Skip to content

Commit c7fec51

Browse files
authored
Fix example (#196)
1 parent ba35c7f commit c7fec51

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

doc/DEVELOPMENT.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ s3_checkpoint = S3Checkpoint(region=REGION, s3client_config=config)
169169
s3_lightning_checkpoint = S3LightningCheckpoint(region=REGION, s3client_config=config)
170170

171171
# Disable signing to make requests without AWS credentials
172-
s3_client = S3Client(region=REGION, s3client_config=S3ClientConfig(unsigned=True))
172+
config = S3ClientConfig(unsigned=True)
173+
s3_map_dataset = S3MapDataset.from_prefix(DATASET_URI, region=REGION, s3client_config=config)
173174
```
174175

175176
**When modifying the default values for these flags, we strongly recommend to run benchmarking to ensure you are not

0 commit comments

Comments
 (0)