Skip to content

Commit 44d19f0

Browse files
committed
Let MyPy know a decoration is on purpose. Commit ready for merge.
- Legacy-Id: 18297
1 parent 328c92f commit 44d19f0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ietf/doc/templatetags/active_groups_menu.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111

1212
others = []
1313
for group in Group.objects.filter(acronym__in=('rsoc',), state_id='active'):
14-
group.menu_url = reverse('ietf.group.views.group_home', kwargs=dict(acronym=group.acronym)) # could use group.about_url() instead
14+
group.menu_url = reverse('ietf.group.views.group_home', kwargs=dict(acronym=group.acronym)) # type: ignore
15+
# could use group.about_url() instead
1516
others.append(group)
1617

1718
@register.simple_tag

0 commit comments

Comments
 (0)