Skip to content

Commit 4e5e90c

Browse files
authored
Fix lint now that it's enabled (#21)
Signed-off-by: Phil Dibowitz <phil@ipom.com>
1 parent f248d9c commit 4e5e90c

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
- name: Install black
2020
run: pip install black
2121
- name: Run black
22-
run: black --check .
22+
run: black --check -l 80 .

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Program generation
22

3+
[![lint](https://github.com/socallinuxexpo/program-generation/actions/workflows/lint.yml/badge.svg)](https://github.com/socallinuxexpo/program-generation/actions/workflows/lint.yml)
4+
35
This is the repo for all things around generating SCALE Programs - both printed
46
and digital.
7+
8+
See the README's in each directory for more information about each component.

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)