We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
packet/routes
1 parent 7f7ad70 commit fe708caCopy full SHA for fe708ca
.github/workflows/python-app.yml
@@ -31,7 +31,7 @@ jobs:
31
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
32
- name: Lint with pylint
33
run: |
34
- pylint packet
+ pylint packet/routes packet
35
36
typecheck:
37
runs-on: ubuntu-latest
packet/routes/api.py
@@ -210,8 +210,8 @@ def upperclassman_stats(uid):
210
211
@app.route('/readiness')
212
def readiness() -> tuple[str, int]:
213
- '''A basic healthcheck. Returns 200 to indicate flask is running'''
214
- return "ready", 200
+ """A basic healthcheck. Returns 200 to indicate flask is running"""
+ return 'ready', 200
215
216
217
def commit_sig(packet, was_100, uid):
0 commit comments