File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 3131 if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3232 - name : Lint with pylint
3333 run : |
34- pylint packet
34+ pylint packet/routes packet
3535
3636 typecheck :
3737 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 7878app .logger .info ('OIDCAuth configured' )
7979
8080# Sentry
81+ # pylint: disable=abstract-class-instantiated
8182sentry_sdk .init (
8283 dsn = app .config ['SENTRY_DSN' ],
8384 integrations = [FlaskIntegration (), SqlalchemyIntegration ()]
Original file line number Diff line number Diff line change @@ -210,8 +210,8 @@ def upperclassman_stats(uid):
210210
211211@app .route ('/readiness' )
212212def readiness () -> tuple [str , int ]:
213- ''' A basic healthcheck. Returns 200 to indicate flask is running'''
214- return " ready" , 200
213+ """ A basic healthcheck. Returns 200 to indicate flask is running"""
214+ return ' ready' , 200
215215
216216
217217def commit_sig (packet , was_100 , uid ):
You can’t perform that action at this time.
0 commit comments