Skip to content

Commit 87aaf4a

Browse files
committed
Remove unused idtracker import from iesg/models.py
- Legacy-Id: 6429
1 parent a17c07f commit 87aaf4a

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

ietf/iesg/models.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3333
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3434

35+
import datetime
36+
3537
from django.db import models
3638
from django.conf import settings
37-
from ietf.idtracker.models import Acronym
38-
import datetime
3939

4040
class TelechatAgendaItem(models.Model):
4141
TYPE_CHOICES = (
@@ -48,10 +48,7 @@ class TelechatAgendaItem(models.Model):
4848
text = models.TextField(blank=True, db_column='template_text')
4949
type = models.IntegerField(db_column='template_type', choices=TYPE_CHOICES, default=3)
5050
title = models.CharField(max_length=255, db_column='template_title')
51-
#The following fields are apparently not used
52-
#note = models.TextField(null=True,blank=True)
53-
#discussed_status_id = models.IntegerField(null=True, blank=True)
54-
#decision = models.TextField(null=True,blank=True)
51+
5552
def __unicode__(self):
5653
type_name = self.TYPE_CHOICES_DICT.get(self.type, str(self.type))
5754
return u'%s: %s' % (type_name, self.title or "")
@@ -65,6 +62,7 @@ class Telechat(models.Model):
6562
management_issue = models.TextField(blank=True)
6663
frozen = models.IntegerField(null=True, blank=True)
6764
mi_frozen = models.IntegerField(null=True, blank=True)
65+
6866
class Meta:
6967
db_table = u'telechat'
7068

0 commit comments

Comments
 (0)