We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 328c92f commit 44d19f0Copy full SHA for 44d19f0
1 file changed
ietf/doc/templatetags/active_groups_menu.py
@@ -11,7 +11,8 @@
11
12
others = []
13
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
+ group.menu_url = reverse('ietf.group.views.group_home', kwargs=dict(acronym=group.acronym)) # type: ignore
15
+ # could use group.about_url() instead
16
others.append(group)
17
18
@register.simple_tag
0 commit comments