Skip to content

Commit c91588b

Browse files
move code block
1 parent a87b1eb commit c91588b

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,17 @@
6666
```
6767

6868
> [!NOTE]
69-
>
7069
> In this example, the private key's contents are set and loaded directly from the environment. If you prefer to use the file itself, you could do something like this instead:
71-
>
72-
> ```python
73-
> from pathlib import Path
74-
>
75-
> GITHUB_APP = {
76-
> ...
77-
> "PRIVATE_KEY": Path(env.path("GITHUB_PRIVATE_KEY_PATH")).read_text(),
78-
> ...
79-
> }
80-
> ```
70+
71+
```python
72+
from pathlib import Path
73+
74+
GITHUB_APP = {
75+
...
76+
"PRIVATE_KEY": Path(env.path("GITHUB_PRIVATE_KEY_PATH")).read_text(),
77+
...
78+
}
79+
```
8180
8281
## Getting Started
8382

0 commit comments

Comments
 (0)