Skip to content

Commit

Permalink
Fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
donnybeelo committed Aug 19, 2024
1 parent 39567c1 commit 12d8015
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions softpack_core/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"""


import multiprocessing
import urllib.parse
from multiprocessing.synchronize import Event as EventClass
from pathlib import Path

import typer
Expand Down Expand Up @@ -52,7 +52,7 @@ def run(
help="Create and use this branch of Artefacts repo.",
),
] = 'main',
serviceReady = None,
serviceReady: EventClass = None,
) -> None:
"""Start the SoftPack Core REST API service.
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def httpx_post(mocker):


@pytest.fixture
def testable_env_input(mocker) -> EnvironmentInput:
def testable_env_input(mocker) -> EnvironmentInput: # type: ignore
ad = new_test_artifacts()
artifacts: Artifacts = ad["artifacts"]
user = ad["test_user"]
Expand Down

0 comments on commit 12d8015

Please sign in to comment.