Let MyPy know a decoration is on purpose. Commit ready for merge.

- Legacy-Id: 18297
This commit is contained in:
Robert Sparks 2020-07-28 16:49:08 +00:00
parent 328c92f395
commit 44d19f0533

View file

@ -11,7 +11,8 @@ parents = GroupTypeName.objects.filter(slug__in=['ag','area','team','dir','progr
others = []
for group in Group.objects.filter(acronym__in=('rsoc',), state_id='active'):
group.menu_url = reverse('ietf.group.views.group_home', kwargs=dict(acronym=group.acronym)) # could use group.about_url() instead
group.menu_url = reverse('ietf.group.views.group_home', kwargs=dict(acronym=group.acronym)) # type: ignore
# could use group.about_url() instead
others.append(group)
@register.simple_tag