From 322ab22cf2b5fb636f6791790f4aec83b3217215 Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Thu, 2 Aug 2018 16:53:34 -0400 Subject: [PATCH] Resolve lint warning --- atst/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atst/app.py b/atst/app.py index 17063840..1bd86640 100644 --- a/atst/app.py +++ b/atst/app.py @@ -58,7 +58,7 @@ def make_flask_callbacks(app): } @app.template_filter('iconSvg') - def iconSvg(name): + def _iconSvg(name): with open('static/icons/'+name+'.svg') as contents: return contents.read()