Skip to content

Commit

Permalink
Update directory_tree function
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhad6 committed Aug 24, 2024
1 parent b309327 commit 0fdada7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

- Add view, edit, and GitHub links to documentation website.

## [0.5.0] (Aug 24 2024)

- Public release of DataLogs.
Expand Down
12 changes: 6 additions & 6 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import os
from tempfile import TemporaryDirectory
from directory_tree import display_tree
from directory_tree import DisplayTree
tmp_dir = TemporaryDirectory()
os.chdir(tmp_dir.name)
Expand Down Expand Up @@ -47,7 +47,7 @@ Our current working directory now contains a directory called `data_logs`.
```{jupyter-execute}
:hide-code:
display_tree("data_logs")
DisplayTree("data_logs")
```

```{tip}
Expand Down Expand Up @@ -79,7 +79,7 @@ directories are not created yet.
```{jupyter-execute}
:hide-code:
display_tree("data_logs")
DisplayTree("data_logs")
```

```{important}
Expand Down Expand Up @@ -129,7 +129,7 @@ file.
```{jupyter-execute}
:hide-code:
display_tree("data_logs")
DisplayTree("data_logs")
```

### Dictionary Logs
Expand All @@ -151,7 +151,7 @@ The log file has now been created within the node directory.
```{jupyter-execute}
:hide-code:
display_tree("data_logs")
DisplayTree("data_logs")
```

### Property Logs
Expand Down Expand Up @@ -190,7 +190,7 @@ The log file has now been created within the node directory.
```{jupyter-execute}
:hide-code:
display_tree("data_logs")
DisplayTree("data_logs")
```

## Loading
Expand Down

0 comments on commit 0fdada7

Please sign in to comment.