chore: format code

This commit is contained in:
Livio Bieri 2024-02-29 13:58:47 +01:00
parent e3f8e4556f
commit cc81d81553
3 changed files with 5 additions and 11 deletions

View File

@ -10,9 +10,7 @@ from vbv_lernwelt.learning_mentor.entities import (
MentorAssignmentStatusType,
MentorCompletionStatus,
)
from vbv_lernwelt.learnpath.models import (
LearningUnit,
)
from vbv_lernwelt.learnpath.models import LearningUnit
from vbv_lernwelt.self_evaluation_feedback.models import SelfEvaluationFeedback
logger = structlog.get_logger(__name__)

View File

@ -4,14 +4,13 @@ from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('learnpath', '0015_set_feedback_user_mentor_for_vv'),
("learnpath", "0015_set_feedback_user_mentor_for_vv"),
]
operations = [
migrations.RemoveField(
model_name='learningunit',
name='feedback_user',
model_name="learningunit",
name="feedback_user",
),
]

View File

@ -9,10 +9,7 @@ from vbv_lernwelt.core.models import User
from vbv_lernwelt.core.serializers import UserSerializer
from vbv_lernwelt.course.models import CourseCompletion, CourseSession
from vbv_lernwelt.learning_mentor.models import LearningMentor
from vbv_lernwelt.learnpath.models import (
Circle,
LearningUnit,
)
from vbv_lernwelt.learnpath.models import Circle, LearningUnit
from vbv_lernwelt.notify.services import NotificationService
from vbv_lernwelt.self_evaluation_feedback.models import (
CourseCompletionFeedback,