Skip to content

Commit a288401

Browse files
committed
Type checking tweaks.
- Legacy-Id: 16866
1 parent 447525d commit a288401

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ietf/secr/sreq/forms.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
NUM_SESSION_CHOICES = (('','--Please select'),('1','1'),('2','2'))
2121
# LENGTH_SESSION_CHOICES = (('','--Please select'),('1800','30 minutes'),('3600','1 hour'),('5400','1.5 hours'), ('7200','2 hours'),('9000','2.5 hours'))
2222
LENGTH_SESSION_CHOICES = (('','--Please select'),('1800','30 minutes'),('3600','1 hour'),('5400','1.5 hours'), ('7200','2 hours'))
23-
WG_CHOICES = list( Group.objects.filter(type__in=('wg','rg','ag'),state__in=('bof','proposed','active')).values_list('acronym','acronym').order_by('acronym')) # type: ignore
24-
WG_CHOICES.insert(0,('','--Select WG(s)'))
23+
WG_CHOICES = list( Group.objects.filter(type__in=('wg','rg','ag'),state__in=('bof','proposed','active')).values_list('acronym','acronym').order_by('acronym')) # type:ignore
24+
WG_CHOICES.insert(0,('','--Select WG(s)')) # type:ignore
2525

2626
# -------------------------------------------------
2727
# Helper Functions

0 commit comments

Comments
 (0)