Skip to content
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

Fix: typos. #526

Merged
merged 5 commits into from
Oct 9, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Added loop type for async client.
Signed-off-by: dblock <dblock@amazon.com>
  • Loading branch information
dblock committed Oct 9, 2023
commit eb06c532c30c450457e461552bad26b8798edf48
3 changes: 2 additions & 1 deletion opensearchpy/_async/http_aiohttp.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
# specific language governing permissions and limitations
# under the License.

from asyncio import AbstractEventLoop
from typing import Any, Collection, Mapping, Optional, Tuple, Union

from ..connection import Connection
Expand Down Expand Up @@ -65,7 +66,7 @@ class AIOHttpConnection(AsyncConnection):
ssl_context: Optional[Any] = ...,
http_compress: Optional[bool] = ...,
opaque_id: Optional[str] = ...,
loop: Any = ...,
loop: Optional[AbstractEventLoop] = ...,
trust_env: bool = ...,
**kwargs: Any
) -> None: ...
Loading