From bf9e7e11d49dc0e6d3ee6542a33f264ccced490a 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 de5687f2..a9e95c32 100644 --- a/atst/app.py +++ b/atst/app.py @@ -64,7 +64,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()