File tree 3 files changed +4
-2
lines changed
python-flask-directory-sync-example
python-flask-sso-example/.vscode
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ blocks:
13
13
- sem-version python 3.8
14
14
- ' flake8 . --count --select=E9,F7,F82 --show-source --statistics'
15
15
- flake8 . --count --exit-zero --max-complexity=10 --statistics
16
+ - black --check .
16
17
prologue :
17
18
commands :
18
19
- checkout
19
20
- sem-version python 3.8
20
21
- python -m pip install --upgrade pip
21
- - ' pip install -e .[dev]'
22
22
- pip install flake8
23
23
- pip install black
Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ def directory_groups():
58
58
59
59
@app .route ("/webhooks" , methods = ["GET" , "POST" ])
60
60
def webhooks ():
61
- print (request )
62
61
if request .data :
63
62
payload = request .get_data ()
64
63
sig_header = request .headers ["WorkOS-Signature" ]
Original file line number Diff line number Diff line change
1
+ {
2
+ "python.formatting.provider" : " black"
3
+ }
You can’t perform that action at this time.
0 commit comments