Skip to content

Commit

Permalink
Merge pull request #154 from mjarosie/main
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
ojii authored Oct 11, 2022
2 parents 7323c55 + 575197c commit 7d594ea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ structlog = "^20.1.0"
aiohttp = ">=3"

[tool.poetry.dev-dependencies]
jinja2 = "^2.11.2"
jinja2 = "^3.1.2"
pytest = "^6.0.1"
pytest-asyncio = "^0.14.0"
sphinx = "^3.2.1"
sphinx = "^5.2.3"
pytest-cov = "^2.10.1"
asyncio-extras = "^1.3.2"
pre-commit = "^2.7.1"
black = "^20.8b1"
black = "^22.10.0"
Pillow = "^8.1.0"

[tool.poetry.scripts]
Expand Down
1 change: 0 additions & 1 deletion src/arsenic/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ def check_ie11_environment_cli():
def configure_ie11_environment_cli():
pass


else:
import ctypes
import winreg
Expand Down
2 changes: 1 addition & 1 deletion src/arsenic/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async def wait_service():
ok = False
if ok:
return
await asyncio.sleep(start_timeout * 2 ** i)
await asyncio.sleep(start_timeout * 2**i)

try:
await asyncio.wait_for(wait_service(), timeout=start_timeout)
Expand Down

0 comments on commit 7d594ea

Please sign in to comment.