Skip to content

Commit 031d996

Browse files
author
ask-pyth
committed
Release 1.10.1. For changelog, check CHANGELOG.rst
1 parent dd22f52 commit 031d996

File tree

260 files changed

+272
-263
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

260 files changed

+272
-263
lines changed

ask-sdk-model/CHANGELOG.rst

Lines changed: 9 additions & 0 deletions

ask-sdk-model/ask_sdk_model/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
__pip_package_name__ = 'ask-sdk-model'
1515
__description__ = 'The ASK SDK Model package provides model definitions, for building Alexa Skills.'
1616
__url__ = 'https://github.com/alexa/alexa-apis-for-python'
17-
__version__ = '1.10.0'
17+
__version__ = '1.10.1'
1818
__author__ = 'Alexa Skills Kit'
1919
__author_email__ = 'ask-sdk-dynamic@amazon.com'
2020
__license__ = 'Apache 2.0'

ask-sdk-model/ask_sdk_model/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Application(object):
4040

4141
attribute_map = {
4242
'application_id': 'applicationId'
43-
} # type: Dict
43+
} # type: Dict
4444

4545
def __init__(self, application_id=None):
4646
# type: (Optional[str]) -> None

ask-sdk-model/ask_sdk_model/canfulfill/can_fulfill_intent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class CanFulfillIntent(object):
4646
attribute_map = {
4747
'can_fulfill': 'canFulfill',
4848
'slots': 'slots'
49-
} # type: Dict
49+
} # type: Dict
5050

5151
def __init__(self, can_fulfill=None, slots=None):
5252
# type: (Optional[CanFulfillIntentValues], Optional[Dict[str, CanFulfillSlot]]) -> None

ask-sdk-model/ask_sdk_model/canfulfill/can_fulfill_intent_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class CanFulfillIntentRequest(Request):
6161
'locale': 'locale',
6262
'dialog_state': 'dialogState',
6363
'intent': 'intent'
64-
} # type: Dict
64+
} # type: Dict
6565

6666
def __init__(self, request_id=None, timestamp=None, locale=None, dialog_state=None, intent=None):
6767
# type: (Optional[str], Optional[datetime], Optional[str], Optional[DialogState], Optional[Intent]) -> None

ask-sdk-model/ask_sdk_model/canfulfill/can_fulfill_slot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class CanFulfillSlot(object):
4646
attribute_map = {
4747
'can_understand': 'canUnderstand',
4848
'can_fulfill': 'canFulfill'
49-
} # type: Dict
49+
} # type: Dict
5050

5151
def __init__(self, can_understand=None, can_fulfill=None):
5252
# type: (Optional[CanUnderstandSlotValues], Optional[CanFulfillSlotValues]) -> None

ask-sdk-model/ask_sdk_model/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class Context(object):
6464
'display': 'Display',
6565
'geolocation': 'Geolocation',
6666
'viewport': 'Viewport'
67-
} # type: Dict
67+
} # type: Dict
6868

6969
def __init__(self, system=None, audio_player=None, automotive=None, display=None, geolocation=None, viewport=None):
7070
# type: (Optional[SystemState], Optional[AudioPlayerState], Optional[AutomotiveState], Optional[DisplayState], Optional[GeolocationState], Optional[ViewportState]) -> None

ask-sdk-model/ask_sdk_model/device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class Device(object):
4545
attribute_map = {
4646
'device_id': 'deviceId',
4747
'supported_interfaces': 'supportedInterfaces'
48-
} # type: Dict
48+
} # type: Dict
4949

5050
def __init__(self, device_id=None, supported_interfaces=None):
5151
# type: (Optional[str], Optional[SupportedInterfaces]) -> None

ask-sdk-model/ask_sdk_model/dialog/confirm_intent_directive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class ConfirmIntentDirective(Directive):
4242
attribute_map = {
4343
'object_type': 'type',
4444
'updated_intent': 'updatedIntent'
45-
} # type: Dict
45+
} # type: Dict
4646

4747
def __init__(self, updated_intent=None):
4848
# type: (Optional[Intent]) -> None

ask-sdk-model/ask_sdk_model/dialog/confirm_slot_directive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ConfirmSlotDirective(Directive):
4646
'object_type': 'type',
4747
'updated_intent': 'updatedIntent',
4848
'slot_to_confirm': 'slotToConfirm'
49-
} # type: Dict
49+
} # type: Dict
5050

5151
def __init__(self, updated_intent=None, slot_to_confirm=None):
5252
# type: (Optional[Intent], Optional[str]) -> None

ask-sdk-model/ask_sdk_model/dialog/delegate_directive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class DelegateDirective(Directive):
4242
attribute_map = {
4343
'object_type': 'type',
4444
'updated_intent': 'updatedIntent'
45-
} # type: Dict
45+
} # type: Dict
4646

4747
def __init__(self, updated_intent=None):
4848
# type: (Optional[Intent]) -> None

ask-sdk-model/ask_sdk_model/dialog/dynamic_entities_directive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class DynamicEntitiesDirective(Directive):
4747
'object_type': 'type',
4848
'update_behavior': 'updateBehavior',
4949
'types': 'types'
50-
} # type: Dict
50+
} # type: Dict
5151

5252
def __init__(self, update_behavior=None, types=None):
5353
# type: (Optional[UpdateBehavior], Optional[List[EntityListItem]]) -> None

ask-sdk-model/ask_sdk_model/dialog/elicit_slot_directive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ElicitSlotDirective(Directive):
4646
'object_type': 'type',
4747
'updated_intent': 'updatedIntent',
4848
'slot_to_elicit': 'slotToElicit'
49-
} # type: Dict
49+
} # type: Dict
5050

5151
def __init__(self, updated_intent=None, slot_to_elicit=None):
5252
# type: (Optional[Intent], Optional[str]) -> None

ask-sdk-model/ask_sdk_model/directive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class Directive(object):
8080

8181
attribute_map = {
8282
'object_type': 'type'
83-
} # type: Dict
83+
} # type: Dict
8484

8585
discriminator_value_class_map = {
8686
'AudioPlayer.Stop': 'ask_sdk_model.interfaces.audioplayer.stop_directive.StopDirective',

ask-sdk-model/ask_sdk_model/er/dynamic/entity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class Entity(object):
4545
attribute_map = {
4646
'id': 'id',
4747
'name': 'name'
48-
} # type: Dict
48+
} # type: Dict
4949

5050
def __init__(self, id=None, name=None):
5151
# type: (Optional[str], Optional[EntityValueAndSynonyms]) -> None

ask-sdk-model/ask_sdk_model/er/dynamic/entity_list_item.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class EntityListItem(object):
4545
attribute_map = {
4646
'name': 'name',
4747
'values': 'values'
48-
} # type: Dict
48+
} # type: Dict
4949

5050
def __init__(self, name=None, values=None):
5151
# type: (Optional[str], Optional[List[Entity]]) -> None

ask-sdk-model/ask_sdk_model/er/dynamic/entity_value_and_synonyms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class EntityValueAndSynonyms(object):
4444
attribute_map = {
4545
'value': 'value',
4646
'synonyms': 'synonyms'
47-
} # type: Dict
47+
} # type: Dict
4848

4949
def __init__(self, value=None, synonyms=None):
5050
# type: (Optional[str], Optional[List[object]]) -> None

ask-sdk-model/ask_sdk_model/events/skillevents/account_linked_body.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class AccountLinkedBody(object):
3838

3939
attribute_map = {
4040
'access_token': 'accessToken'
41-
} # type: Dict
41+
} # type: Dict
4242

4343
def __init__(self, access_token=None):
4444
# type: (Optional[str]) -> None

ask-sdk-model/ask_sdk_model/events/skillevents/account_linked_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class AccountLinkedRequest(Request):
6464
'body': 'body',
6565
'event_creation_time': 'eventCreationTime',
6666
'event_publishing_time': 'eventPublishingTime'
67-
} # type: Dict
67+
} # type: Dict
6868

6969
def __init__(self, request_id=None, timestamp=None, locale=None, body=None, event_creation_time=None, event_publishing_time=None):
7070
# type: (Optional[str], Optional[datetime], Optional[str], Optional[AccountLinkedBody], Optional[datetime], Optional[datetime]) -> None

ask-sdk-model/ask_sdk_model/events/skillevents/permission.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Permission(object):
3838

3939
attribute_map = {
4040
'scope': 'scope'
41-
} # type: Dict
41+
} # type: Dict
4242

4343
def __init__(self, scope=None):
4444
# type: (Optional[str]) -> None

ask-sdk-model/ask_sdk_model/events/skillevents/permission_accepted_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class PermissionAcceptedRequest(Request):
6262
'body': 'body',
6363
'event_creation_time': 'eventCreationTime',
6464
'event_publishing_time': 'eventPublishingTime'
65-
} # type: Dict
65+
} # type: Dict
6666

6767
def __init__(self, request_id=None, timestamp=None, locale=None, body=None, event_creation_time=None, event_publishing_time=None):
6868
# type: (Optional[str], Optional[datetime], Optional[str], Optional[PermissionBody], Optional[datetime], Optional[datetime]) -> None

ask-sdk-model/ask_sdk_model/events/skillevents/permission_body.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class PermissionBody(object):
3939

4040
attribute_map = {
4141
'accepted_permissions': 'acceptedPermissions'
42-
} # type: Dict
42+
} # type: Dict
4343

4444
def __init__(self, accepted_permissions=None):
4545
# type: (Optional[List[Permission]]) -> None

ask-sdk-model/ask_sdk_model/events/skillevents/permission_changed_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class PermissionChangedRequest(Request):
6262
'body': 'body',
6363
'event_creation_time': 'eventCreationTime',
6464
'event_publishing_time': 'eventPublishingTime'
65-
} # type: Dict
65+
} # type: Dict
6666

6767
def __init__(self, request_id=None, timestamp=None, locale=None, body=None, event_creation_time=None, event_publishing_time=None):
6868
# type: (Optional[str], Optional[datetime], Optional[str], Optional[PermissionBody], Optional[datetime], Optional[datetime]) -> None

ask-sdk-model/ask_sdk_model/events/skillevents/proactive_subscription_changed_body.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ProactiveSubscriptionChangedBody(object):
3939

4040
attribute_map = {
4141
'subscriptions': 'subscriptions'
42-
} # type: Dict
42+
} # type: Dict
4343

4444
def __init__(self, subscriptions=None):
4545
# type: (Optional[List[ProactiveSubscriptionEvent]]) -> None

ask-sdk-model/ask_sdk_model/events/skillevents/proactive_subscription_changed_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class ProactiveSubscriptionChangedRequest(Request):
5656
'timestamp': 'timestamp',
5757
'locale': 'locale',
5858
'body': 'body'
59-
} # type: Dict
59+
} # type: Dict
6060

6161
def __init__(self, request_id=None, timestamp=None, locale=None, body=None):
6262
# type: (Optional[str], Optional[datetime], Optional[str], Optional[ProactiveSubscriptionChangedBody]) -> None

ask-sdk-model/ask_sdk_model/events/skillevents/proactive_subscription_event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class ProactiveSubscriptionEvent(object):
3838

3939
attribute_map = {
4040
'event_name': 'eventName'
41-
} # type: Dict
41+
} # type: Dict
4242

4343
def __init__(self, event_name=None):
4444
# type: (Optional[str]) -> None

ask-sdk-model/ask_sdk_model/events/skillevents/skill_disabled_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class SkillDisabledRequest(Request):
5757
'locale': 'locale',
5858
'event_creation_time': 'eventCreationTime',
5959
'event_publishing_time': 'eventPublishingTime'
60-
} # type: Dict
60+
} # type: Dict
6161

6262
def __init__(self, request_id=None, timestamp=None, locale=None, event_creation_time=None, event_publishing_time=None):
6363
# type: (Optional[str], Optional[datetime], Optional[str], Optional[datetime], Optional[datetime]) -> None

ask-sdk-model/ask_sdk_model/events/skillevents/skill_enabled_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class SkillEnabledRequest(Request):
5757
'locale': 'locale',
5858
'event_creation_time': 'eventCreationTime',
5959
'event_publishing_time': 'eventPublishingTime'
60-
} # type: Dict
60+
} # type: Dict
6161

6262
def __init__(self, request_id=None, timestamp=None, locale=None, event_creation_time=None, event_publishing_time=None):
6363
# type: (Optional[str], Optional[datetime], Optional[str], Optional[datetime], Optional[datetime]) -> None

ask-sdk-model/ask_sdk_model/intent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class Intent(object):
5050
'name': 'name',
5151
'slots': 'slots',
5252
'confirmation_status': 'confirmationStatus'
53-
} # type: Dict
53+
} # type: Dict
5454

5555
def __init__(self, name=None, slots=None, confirmation_status=None):
5656
# type: (Optional[str], Optional[Dict[str, Slot]], Optional[IntentConfirmationStatus]) -> None

ask-sdk-model/ask_sdk_model/intent_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class IntentRequest(Request):
6161
'locale': 'locale',
6262
'dialog_state': 'dialogState',
6363
'intent': 'intent'
64-
} # type: Dict
64+
} # type: Dict
6565

6666
def __init__(self, request_id=None, timestamp=None, locale=None, dialog_state=None, intent=None):
6767
# type: (Optional[str], Optional[datetime], Optional[str], Optional[DialogState], Optional[Intent]) -> None

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/alexa_presentation_apl_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class AlexaPresentationAplInterface(object):
3939

4040
attribute_map = {
4141
'runtime': 'runtime'
42-
} # type: Dict
42+
} # type: Dict
4343

4444
def __init__(self, runtime=None):
4545
# type: (Optional[Runtime]) -> None

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/auto_page_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class AutoPageCommand(Command):
6363
'component_id': 'componentId',
6464
'count': 'count',
6565
'duration': 'duration'
66-
} # type: Dict
66+
} # type: Dict
6767

6868
def __init__(self, delay=None, description=None, when=None, component_id=None, count=None, duration=None):
6969
# type: (Optional[int], Optional[str], Optional[bool], Optional[str], Optional[int], Optional[int]) -> None

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class Command(object):
8484
'delay': 'delay',
8585
'description': 'description',
8686
'when': 'when'
87-
} # type: Dict
87+
} # type: Dict
8888

8989
discriminator_value_class_map = {
9090
'SetPage': 'ask_sdk_model.interfaces.alexa.presentation.apl.set_page_command.SetPageCommand',

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/control_media_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class ControlMediaCommand(Command):
6464
'command': 'command',
6565
'component_id': 'componentId',
6666
'value': 'value'
67-
} # type: Dict
67+
} # type: Dict
6868

6969
def __init__(self, delay=None, description=None, when=None, command=None, component_id=None, value=None):
7070
# type: (Optional[int], Optional[str], Optional[bool], Optional[MediaCommandType], Optional[str], Optional[int]) -> None

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/execute_commands_directive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class ExecuteCommandsDirective(Directive):
4848
'object_type': 'type',
4949
'commands': 'commands',
5050
'token': 'token'
51-
} # type: Dict
51+
} # type: Dict
5252

5353
def __init__(self, commands=None, token=None):
5454
# type: (Optional[List[Command]], Optional[str]) -> None

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/idle_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class IdleCommand(Command):
5151
'delay': 'delay',
5252
'description': 'description',
5353
'when': 'when'
54-
} # type: Dict
54+
} # type: Dict
5555

5656
def __init__(self, delay=None, description=None, when=None):
5757
# type: (Optional[int], Optional[str], Optional[bool]) -> None

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/parallel_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class ParallelCommand(Command):
5656
'description': 'description',
5757
'when': 'when',
5858
'commands': 'commands'
59-
} # type: Dict
59+
} # type: Dict
6060

6161
def __init__(self, delay=None, description=None, when=None, commands=None):
6262
# type: (Optional[int], Optional[str], Optional[bool], Optional[List[Command]]) -> None

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/play_media_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class PlayMediaCommand(Command):
6565
'audio_track': 'audioTrack',
6666
'component_id': 'componentId',
6767
'source': 'source'
68-
} # type: Dict
68+
} # type: Dict
6969

7070
def __init__(self, delay=None, description=None, when=None, audio_track=None, component_id=None, source=None):
7171
# type: (Optional[int], Optional[str], Optional[bool], Optional[AudioTrack], Optional[str], Optional[List[VideoSource]]) -> None

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/render_document_directive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class RenderDocumentDirective(Directive):
5353
'document': 'document',
5454
'datasources': 'datasources',
5555
'packages': 'packages'
56-
} # type: Dict
56+
} # type: Dict
5757

5858
def __init__(self, token=None, document=None, datasources=None, packages=None):
5959
# type: (Optional[str], Optional[Dict[str, object]], Optional[Dict[str, object]], Optional[List[object]]) -> None

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/runtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Runtime(object):
4040

4141
attribute_map = {
4242
'max_version': 'maxVersion'
43-
} # type: Dict
43+
} # type: Dict
4444

4545
def __init__(self, max_version=None):
4646
# type: (Optional[str]) -> None

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/scroll_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class ScrollCommand(Command):
5959
'when': 'when',
6060
'distance': 'distance',
6161
'component_id': 'componentId'
62-
} # type: Dict
62+
} # type: Dict
6363

6464
def __init__(self, delay=None, description=None, when=None, distance=None, component_id=None):
6565
# type: (Optional[int], Optional[str], Optional[bool], Optional[int], Optional[str]) -> None

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/scroll_to_index_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class ScrollToIndexCommand(Command):
6464
'align': 'align',
6565
'component_id': 'componentId',
6666
'index': 'index'
67-
} # type: Dict
67+
} # type: Dict
6868

6969
def __init__(self, delay=None, description=None, when=None, align=None, component_id=None, index=None):
7070
# type: (Optional[int], Optional[str], Optional[bool], Optional[Align], Optional[str], Optional[int]) -> None

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/send_event_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class SendEventCommand(Command):
5959
'when': 'when',
6060
'arguments': 'arguments',
6161
'components': 'components'
62-
} # type: Dict
62+
} # type: Dict
6363

6464
def __init__(self, delay=None, description=None, when=None, arguments=None, components=None):
6565
# type: (Optional[int], Optional[str], Optional[bool], Optional[List[object]], Optional[List[object]]) -> None

ask-sdk-model/ask_sdk_model/interfaces/alexa/presentation/apl/sequential_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class SequentialCommand(Command):
6060
'when': 'when',
6161
'commands': 'commands',
6262
'repeat_count': 'repeatCount'
63-
} # type: Dict
63+
} # type: Dict
6464

6565
def __init__(self, delay=None, description=None, when=None, commands=None, repeat_count=None):
6666
# type: (Optional[int], Optional[str], Optional[bool], Optional[List[Command]], Optional[int]) -> None

0 commit comments

Comments
 (0)