-
Notifications
You must be signed in to change notification settings - Fork 98
Fix errors reported by mypy #490
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
3b1e53f
2f6ec47
2efe536
2e81249
278ecd7
fa4a9b1
0d187df
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,6 +15,6 @@ | |
| from .orders import OrdersClient | ||
|
|
||
| __all__ = [ | ||
| DataClient, | ||
| OrdersClient, | ||
| 'DataClient', | ||
| 'OrdersClient', | ||
| ] | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -175,11 +175,12 @@ async def create_search(self, | |
| url = self._searches_url() | ||
|
|
||
| # TODO: validate item_types | ||
| request_json = { | ||
| request_json: typing.Dict[str, typing.Any] = { | ||
|
||
| 'name': name, 'filter': search_filter, 'item_types': item_types | ||
| } | ||
| # QUESTION: can we just set the value to True or False above? | ||
|
||
| if enable_email: | ||
| request_json['__daily_email_enabled'] = True | ||
| request_json['__daily_email_enabled'] = enable_email | ||
sgillies marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| request = self._request(url, method='POST', json=request_json) | ||
| response = await self._do_request(request) | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
__all__requires strings, not objects.