chore: format code
This commit is contained in:
parent
e3f8e4556f
commit
cc81d81553
|
|
@ -10,9 +10,7 @@ from vbv_lernwelt.learning_mentor.entities import (
|
||||||
MentorAssignmentStatusType,
|
MentorAssignmentStatusType,
|
||||||
MentorCompletionStatus,
|
MentorCompletionStatus,
|
||||||
)
|
)
|
||||||
from vbv_lernwelt.learnpath.models import (
|
from vbv_lernwelt.learnpath.models import LearningUnit
|
||||||
LearningUnit,
|
|
||||||
)
|
|
||||||
from vbv_lernwelt.self_evaluation_feedback.models import SelfEvaluationFeedback
|
from vbv_lernwelt.self_evaluation_feedback.models import SelfEvaluationFeedback
|
||||||
|
|
||||||
logger = structlog.get_logger(__name__)
|
logger = structlog.get_logger(__name__)
|
||||||
|
|
|
||||||
|
|
@ -4,14 +4,13 @@ from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('learnpath', '0015_set_feedback_user_mentor_for_vv'),
|
("learnpath", "0015_set_feedback_user_mentor_for_vv"),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
migrations.RemoveField(
|
migrations.RemoveField(
|
||||||
model_name='learningunit',
|
model_name="learningunit",
|
||||||
name='feedback_user',
|
name="feedback_user",
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -9,10 +9,7 @@ from vbv_lernwelt.core.models import User
|
||||||
from vbv_lernwelt.core.serializers import UserSerializer
|
from vbv_lernwelt.core.serializers import UserSerializer
|
||||||
from vbv_lernwelt.course.models import CourseCompletion, CourseSession
|
from vbv_lernwelt.course.models import CourseCompletion, CourseSession
|
||||||
from vbv_lernwelt.learning_mentor.models import LearningMentor
|
from vbv_lernwelt.learning_mentor.models import LearningMentor
|
||||||
from vbv_lernwelt.learnpath.models import (
|
from vbv_lernwelt.learnpath.models import Circle, LearningUnit
|
||||||
Circle,
|
|
||||||
LearningUnit,
|
|
||||||
)
|
|
||||||
from vbv_lernwelt.notify.services import NotificationService
|
from vbv_lernwelt.notify.services import NotificationService
|
||||||
from vbv_lernwelt.self_evaluation_feedback.models import (
|
from vbv_lernwelt.self_evaluation_feedback.models import (
|
||||||
CourseCompletionFeedback,
|
CourseCompletionFeedback,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue