# HG changeset patch # User Mads Kiilerich # Date 1591894813 -7200 # Node ID 4e37934fc5fd4f28553b7b3539c8005a25c5280f # Parent c5a3fe671b54a14e1f661a4b668aeced87656f32 helpers: fix "has unused named argument" found with pyflakes 2.2.0 diff -r c5a3fe671b54 -r 4e37934fc5fd kallithea/lib/helpers.py --- a/kallithea/lib/helpers.py Sat Apr 11 20:33:12 2020 +0200 +++ b/kallithea/lib/helpers.py Thu Jun 11 19:00:13 2020 +0200 @@ -932,7 +932,7 @@ else: # if src is empty then there was no gravatar, so we use a font icon html = ("""""" - .format(cls=cls, size=size, src=src)) + .format(cls=cls, size=size)) return literal(html)