Use uppercase for constants

This commit is contained in:
jdcaballerov 2020-12-03 15:44:59 -05:00
parent c8d8346e4d
commit d4bca80b50
2 changed files with 3 additions and 2 deletions

View file

@ -61,7 +61,7 @@ def main_index_template(links: List[Link], template: str=MAIN_INDEX_TEMPLATE) ->
'date_updated': datetime.now().strftime('%Y-%m-%d'),
'time_updated': datetime.now().strftime('%Y-%m-%d %H:%M'),
'links': [link._asdict(extended=True) for link in links],
'footer_info': FOOTER_INFO,
'FOOTER_INFO': FOOTER_INFO,
})