remove unused imports
This commit is contained in:
parent
a7f26de2fe
commit
8a5ee6837b
1 changed files with 3 additions and 18 deletions
|
@ -1,23 +1,10 @@
|
||||||
from django.core.management.base import BaseCommand
|
from django.core.management.base import BaseCommand
|
||||||
|
|
||||||
from symposion.conference.models import Section, current_conference, Conference
|
from symposion.conference.models import Section, current_conference
|
||||||
|
|
||||||
|
|
||||||
from symposion.speakers.models import Speaker
|
from symposion.speakers.models import Speaker
|
||||||
from symposion.schedule.models import Day, Schedule, Session
|
from symposion.schedule.models import Presentation
|
||||||
|
from pinaxcon.proposals.models import TalkProposal, ProposalKind
|
||||||
from symposion.schedule.models import (Day, Presentation, Room, SlotKind, Slot,
|
|
||||||
SlotRoom, ProposalBase)
|
|
||||||
|
|
||||||
from dateutil.parser import parse
|
|
||||||
|
|
||||||
from pinaxcon.proposals.models import TalkProposal
|
|
||||||
|
|
||||||
from symposion.proposals.models import ProposalSection, ProposalKind
|
|
||||||
|
|
||||||
from collections import Counter
|
|
||||||
from pathlib import Path
|
|
||||||
import csv
|
|
||||||
|
|
||||||
|
|
||||||
class Command(BaseCommand):
|
class Command(BaseCommand):
|
||||||
|
@ -42,5 +29,3 @@ class Command(BaseCommand):
|
||||||
pres, _created = Presentation.objects.get_or_create(
|
pres, _created = Presentation.objects.get_or_create(
|
||||||
proposal_base=prop, section=section, speaker=speaker,
|
proposal_base=prop, section=section, speaker=speaker,
|
||||||
title=f"dummy title {i}", abstract=f"dummy abstract {i}")
|
title=f"dummy title {i}", abstract=f"dummy abstract {i}")
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue