From 7df28d8bace70220356e9e210cc036a265296ca7 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Wed, 25 Apr 2018 15:10:55 +0000 Subject: [PATCH] Marked a couple of functions as unreachable. Commit ready for merge. - Legacy-Id: 15080 --- ietf/doc/views_ballot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ietf/doc/views_ballot.py b/ietf/doc/views_ballot.py index 9d317adce..64b76e9ef 100644 --- a/ietf/doc/views_ballot.py +++ b/ietf/doc/views_ballot.py @@ -84,12 +84,14 @@ def do_undefer_ballot(request, doc): email_ballot_undeferred(request, doc, by.plain_name(), telechat_date) def position_to_ballot_choice(position): + log.unreachable('2018-04-25') for v, label in BALLOT_CHOICES: if v and getattr(position, v): return v return "" def position_label(position_value): + log.unreachable('2018-04-25') return dict(BALLOT_CHOICES).get(position_value, "") # -------------------------------------------------