Skip to content

Commit

Permalink
ignore doc output files
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman committed Sep 11, 2023
1 parent 1c44c5e commit 448d1d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Data
data
.dehb_output
example_config.json
example_config.yaml

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
8 changes: 4 additions & 4 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,11 +216,11 @@ print("dict", dict(config))
config = benchmark.sample()
print(config)

config.save("config.yaml")
loaded_config = benchmark.Config.from_file("config.yaml")
config.save("example_config.yaml")
loaded_config = benchmark.Config.from_file("example_config.yaml")

config.save("config.json")
loaded_config = benchmark.Config.from_file("config.json")
config.save("example_config.json")
loaded_config = benchmark.Config.from_file("example_config.json")

print(loaded_config == config)
```
Expand Down

0 comments on commit 448d1d9

Please sign in to comment.