-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop': v1.4.0. Safe kwargs for the entry AliceObject…
… - AliceRequest + imports refactoring + minor fixes + additional tests
- Loading branch information
Showing
33 changed files
with
253 additions
and
99 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
from .base import AliceObject | ||
from .interfaces import Interfaces | ||
from .meta import Meta | ||
from .markup import Markup | ||
from .entity_tokens import EntityTokens | ||
from .entity_value import EntityValue | ||
from .entity import Entity, EntityType | ||
from .natural_language_understanding import NaturalLanguageUnderstanding | ||
from .request import Request, RequestType | ||
from .session import BaseSession, Session | ||
from aioalice.types.base import AliceObject | ||
from aioalice.types.interfaces import Interfaces | ||
from aioalice.types.meta import Meta | ||
from aioalice.types.markup import Markup | ||
from aioalice.types.entity_tokens import EntityTokens | ||
from aioalice.types.entity_value import EntityValue | ||
from aioalice.types.entity import Entity, EntityType | ||
from aioalice.types.natural_language_understanding import NaturalLanguageUnderstanding | ||
from aioalice.types.request import Request, RequestType | ||
from aioalice.types.session import BaseSession, Session | ||
|
||
from .quota import Quota | ||
from .uploaded_image import UploadedImage | ||
from .media_button import MediaButton | ||
from .image import Image | ||
from .card_header import CardHeader | ||
from .card_footer import CardFooter | ||
from .card import Card, CardType | ||
from aioalice.types.quota import Quota | ||
from aioalice.types.uploaded_image import UploadedImage | ||
from aioalice.types.media_button import MediaButton | ||
from aioalice.types.image import Image | ||
from aioalice.types.card_header import CardHeader | ||
from aioalice.types.card_footer import CardFooter | ||
from aioalice.types.card import Card, CardType | ||
|
||
from .button import Button | ||
from .response import Response | ||
from aioalice.types.button import Button | ||
from aioalice.types.response import Response | ||
|
||
from .alice_response import AliceResponse | ||
from .alice_request import AliceRequest | ||
from aioalice.types.alice_response import AliceResponse | ||
from aioalice.types.alice_request import AliceRequest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from attr import attrs, attrib | ||
from . import AliceObject | ||
|
||
from aioalice.types import AliceObject | ||
|
||
|
||
@attrs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from attr import attrs, attrib | ||
from . import AliceObject | ||
|
||
from aioalice.types import AliceObject | ||
|
||
|
||
@attrs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from attr import attrs, attrib | ||
from . import AliceObject | ||
|
||
from aioalice.types import AliceObject | ||
|
||
|
||
@attrs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from attr import attrs, attrib | ||
from . import AliceObject | ||
|
||
from aioalice.types import AliceObject | ||
|
||
|
||
@attrs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from attr import attrs, attrib | ||
from . import AliceObject | ||
|
||
from aioalice.types import AliceObject | ||
|
||
|
||
@attrs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from attr import attrs, attrib | ||
from . import AliceObject | ||
|
||
from aioalice.types import AliceObject | ||
|
||
|
||
@attrs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from attr import attrs, attrib | ||
from . import AliceObject | ||
|
||
from aioalice.types import AliceObject | ||
|
||
|
||
@attrs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from attr import attrs, attrib | ||
from . import AliceObject | ||
|
||
from aioalice.types import AliceObject | ||
|
||
|
||
@attrs | ||
|
Oops, something went wrong.