File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,7 @@ def get_application(app_id, info=None):
2828 'vote.html' ,
2929 application = applicant_info ,
3030 pdf_url = '/application/content/' + app_id ,
31- info = info ,
32- fields = fields )
31+ info = info )
3332
3433@app .route ('/application/content/<app_id>' )
3534@auth .oidc_auth ("default" )
Original file line number Diff line number Diff line change 1010class Applicant (db .Model ):
1111 __tablename__ = 'application'
1212 id = Column (Integer , primary_key = True )
13- created = Column (DateTime (timezone = True ), server_default = func .now (), nullable = False )
13+ created = Column (DateTime (timezone = True ), server_default = func .now (), nullable = False ) #pylint: disable=not-callable
1414 body = Column (String (6000 ), nullable = True )
1515 team = Column (Integer , nullable = False )
1616 gender = Column (String (15 ), nullable = False )
@@ -26,7 +26,7 @@ class Members(db.Model):
2626
2727class Submission (db .Model ):
2828 id = Column (Integer , primary_key = True )
29- created = Column (DateTime (timezone = True ), server_default = func .now (), nullable = False )
29+ created = Column (DateTime (timezone = True ), server_default = func .now (), nullable = False ) #pylint: disable=not-callable
3030 application = Column (Integer , ForeignKey ('application.id' ), nullable = False )
3131 member = Column (String (50 ), ForeignKey ('members.username' ), nullable = False )
3232 medium = Column (interview_enum , primary_key = True )
You can’t perform that action at this time.
0 commit comments