-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: Resolve #165: Classroomに劇の時間を追加 #302
base: develop
Are you sure you want to change the base?
Conversation
with client.application.app_context(): | ||
target_classroom = Classroom.query.first() | ||
|
||
dumpdata = classroom_schema.dump(target_classroom) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indentation contains mixed spaces and tabs
undefined name 'classroom_schema'
def test_classroom_time(client): | ||
with client.application.app_context(): | ||
target_classroom = Classroom.query.first() | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
blank line contains whitespace
indentation contains mixed spaces and tabs
indentation contains tabs
|
||
def test_classroom_time(client): | ||
with client.application.app_context(): | ||
target_classroom = Classroom.query.first() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
undefined name 'Classroom'
@@ -48,6 +48,9 @@ class Classroom(db.Model): | |||
grade = db.Column(db.Integer) | |||
index = db.Column(db.Integer) | |||
title = db.Column(db.String(300)) | |||
begin_time = db.Column(db.Time) | |||
end_time = db.Column(db.Time) | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
blank line contains whitespace
Code Climate has analyzed commit 9057964 and detected 0 issues on this pull request. View more on Code Climate. |
変更内容
劇の発表時間をclassroomに紐づける #165
修正前の挙動:
修正後の挙動:
影響範囲