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/async loop #55

Merged
merged 2 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ The following table shows which versions of `mech-client` are currently being su

| Version | Supported |
|------------| ------------------ |
| `0.2.17` | :white_check_mark: |
| `< 0.2.17` | :x: |
| `0.2.18` | :white_check_mark: |
| `< 0.2.18` | :x: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion mech_client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Mech client."""

__version__ = "0.2.17"
__version__ = "0.2.18"
1 change: 1 addition & 0 deletions mech_client/interact.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,7 @@ def wait_for_data_url( # pylint: disable=too-many-arguments
:rtype: Any
"""
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
tasks = []

if confirmation_type in (
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mech-client"
version = "0.2.17"
version = "0.2.18"
description = "Basic client to interact with a mech"
authors = ["David Minarsch <[email protected]>"]
readme = "README.md"
Expand Down
Loading