Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.

Commit 2ce7f4d

Browse files
committed
tries to fix unit testing
1 parent 52f85af commit 2ce7f4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodeChallenge/manage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from .models import Question, db
44

55

6-
def add_question(title, answer, rank, asset, hint1, hint2) -> Question:
6+
def add_question(title, answer, rank, asset, hint1=None, hint2=None) -> Question:
77

88
q = Question.query.filter_by(rank=rank).first()
99

0 commit comments

Comments
 (0)