# HG changeset patch # User Mads Kiilerich # Date 2020-06-11 19:00:13 # Node ID 4e37934fc5fd4f28553b7b3539c8005a25c5280f # Parent c5a3fe671b54a14e1f661a4b668aeced87656f32 helpers: fix "has unused named argument" found with pyflakes 2.2.0 diff --git a/kallithea/lib/helpers.py b/kallithea/lib/helpers.py --- a/kallithea/lib/helpers.py +++ b/kallithea/lib/helpers.py @@ -932,7 +932,7 @@ def gravatar(email_address, cls='', size 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)