Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
lint black
Browse files Browse the repository at this point in the history
  • Loading branch information
Jing Xu committed Jul 27, 2020
1 parent 08ab3da commit 5cee5cb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion parlai/mturk/tasks/turn_annotations/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
AGENT_1 = 'Person2'

WAITING_MSG = 'Please wait while we match you with another worker...'
FINAL_RATING_QUESTION = 'Please rate your partner on a scale of 1-5 (1: not at all, 5: a lot)'

FINAL_RATING_QUESTION = 'Please rate your partner on a scale of 1-5.'

ANNOTATIONS_INTRO = """<br><br><span style="font-style:italic;">Does this comment from your partner have any of the following attributes? (Check all that apply)<br>"""

Expand Down
7 changes: 5 additions & 2 deletions parlai/mturk/tasks/turn_annotations/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,17 @@
from parlai.core.agents import create_agent_from_shared
from parlai.mturk.core.mturk_manager import MTurkManager
from parlai.core.params import ParlaiParser
from constants import (
from parlai.mturk.tasks.turn_annotations.constants import (
AGENT_0,
ANNOTATIONS_CONFIG,
TASK_CONFIG,
LEFT_PANE_TEXT,
FINAL_RATING_QUESTION,
)
from parlai.mturk.tasks.turn_annotations.worlds import TurnAnnotationsOnboardWorld, TurnAnnotationsChatWorld
from parlai.mturk.tasks.turn_annotations.worlds import (
TurnAnnotationsOnboardWorld,
TurnAnnotationsChatWorld,
)
from parlai.mturk.tasks.turn_annotations.bot_agent import TurkLikeAgent


Expand Down

0 comments on commit 5cee5cb

Please sign in to comment.