We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e92a41 commit cd09719Copy full SHA for cd09719
.github/workflows/lint-format.yml
@@ -27,11 +27,6 @@ jobs:
27
28
- name: Run pylint
29
run: pylint $(git ls-files '*.py')
30
- shell: /usr/bin/bash -e {0}
31
- env:
32
- pythonLocation: /opt/hostedtoolcache/Python/3.12.5/x64
33
- LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.12.5/x64/lib
34
35
-
36
- name: Run black
37
run: black --check .
tests/test_main.py
@@ -115,4 +115,5 @@ def test_secure_data_with_invalid_token():
115
"""
116
response = client.get("/secure-data", params={"token": "wrong_token"})
117
assert response.status_code == 403
118
- assert response.json() == {"message": "Forbidden"}
+ assert response.json() == {"message": "Forbidden"}
119
+
0 commit comments