Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
vcidst committed Jan 19, 2024
1 parent acf376b commit 58dc8fb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/core/test_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,12 @@
from rasa.core.http_interpreter import RasaNLUHttpInterpreter
from rasa.core.processor import MessageProcessor
from rasa.shared.core.trackers import DialogueStateTracker
from rasa.shared.nlu.constants import INTENT_NAME_KEY, METADATA_MODEL_ID
from rasa.shared.nlu.constants import (
INTENT,
INTENT_NAME_KEY,
FULL_RETRIEVAL_INTENT_NAME_KEY,
METADATA_MODEL_ID,
)
from rasa.shared.nlu.training_data.message import Message
from rasa.utils.endpoints import EndpointConfig
from rasa.shared.core.constants import (
Expand All @@ -84,11 +89,6 @@
IS_EXTERNAL,
SESSION_START_METADATA_SLOT,
)
from rasa.shared.nlu.constants import (
INTENT,
INTENT_NAME_KEY,
FULL_RETRIEVAL_INTENT_NAME_KEY,
)

import logging

Expand Down Expand Up @@ -1967,7 +1967,7 @@ async def test_update_full_retrieval_intent(
"response": {
"responses": [
{
"text": "I am not sure of the whole week but I can see the sun is out today."
"text": "The sun is out today! Isn't that great?",
},
],
"confidence": 1.0,
Expand Down

0 comments on commit 58dc8fb

Please sign in to comment.