Skip to content

Commit 0e73964

Browse files
committed
Fix lint now that it's enabled
Signed-off-by: Phil Dibowitz <phil@ipom.com>
1 parent f248d9c commit 0e73964

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ jobs:
1919
- name: Install black
2020
run: pip install black
2121
- name: Run black
22-
run: black --check .
22+
run: |-
23+
black -l 80 .
24+
git diff

guidebook/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22

33
sync_guidebook will update our Guidebook account based on a CSV file.
44

5-
Find API docs here:
6-
https://developer.guidebook.com/
5+
## Resources
6+
7+
* [Guidebook API docs](https://developer.guidebook.com/)
78

89
NOTE: This script assumes you have already uploaded the main map manually
910
(included in this repo).
1011

1112
## Source
1213

1314
To get the source CSV file, visit
14-
https://www.socallinuxexpo.org/admin/export/23x/sessions as an admin (change
15-
`23x` to your year).
15+
[https://www.socallinuxexpo.org/admin/export/23x/sessions](https://www.socallinuxexpo.org/admin/export/23x/sessions)
16+
as an admin (change `23x` to your year).
1617

1718
## Authentication
1819

19-
You can get a Guidebook API key here:
20-
21-
https://builder.guidebook.com/#/account/api/
20+
You can get a Guidebook API [in your
21+
account](https://builder.guidebook.com/#/account/api/).
2222

23-
Put it in a file and pass it to `-a`
23+
Put it in a file and pass it to `-a`.
2424

2525
If you are doing regioned-maps, you will need to have an "internal" API key.
2626
Log into guidebook, and then open a developer console and shove in:
@@ -29,4 +29,4 @@ Log into guidebook, and then open a developer console and shove in:
2929
alert(JSON.parse(('; '+document.cookie).split(`; CurrentUser=`).pop().split(';')[0]).jwt)
3030
```
3131

32-
put that in a file and pass it to `-x`
32+
Put that in a file and pass it to `-x`.

0 commit comments

Comments
 (0)