Skip to content

Commit

Permalink
Minro update
Browse files Browse the repository at this point in the history
  • Loading branch information
arcward committed Apr 23, 2017
1 parent 8d34785 commit f8c25f4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions echopy/response_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
The ``Response`` object is what you'll return to the Alexa service. It
will contain your ``OutputSpeech``, ``Card``, ``Reprompt``...
"""
from typing import Dict


class Response:
Expand All @@ -26,7 +25,7 @@ def __init__(self, output_speech=None, card=None, reprompt=None,
self.version: str = version
if not session_attributes:
session_attributes = {}
self.session_attributes: Dict[str, object] = session_attributes
self.session_attributes = session_attributes

@property
def output_speech(self):
Expand Down

0 comments on commit f8c25f4

Please sign in to comment.