Skip to content

Commit

Permalink
Merge pull request #88 from release-engineering/lint
Browse files Browse the repository at this point in the history
Fix linting issues
  • Loading branch information
JAVGan authored Feb 3, 2025
2 parents 6b01e0b + c2d7c1b commit 7d48dcc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/aws/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ def delivery_options_details_obj(delivery_options_details: Dict[str, Any]) -> De

@pytest.fixture
def ami_delivery_options_details_obj(
ami_delivery_options_details: Dict[str, Any]
ami_delivery_options_details: Dict[str, Any],
) -> DeliveryOption:
return AmiDeliveryOptionsDetails.from_json(ami_delivery_options_details)

Expand Down
4 changes: 2 additions & 2 deletions tests/ms_azure/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,13 +589,13 @@ def job_details_running_obj(job_details_running: Dict[str, Any]) -> ConfigureSta

@pytest.fixture
def job_details_completed_successfully_obj(
job_details_completed_successfully: Dict[str, Any]
job_details_completed_successfully: Dict[str, Any],
) -> ConfigureStatus:
return ConfigureStatus.from_json(job_details_completed_successfully)


@pytest.fixture
def job_details_completed_failure_obj(
job_details_completed_failure: Dict[str, Any]
job_details_completed_failure: Dict[str, Any],
) -> ConfigureStatus:
return ConfigureStatus.from_json(job_details_completed_failure)

0 comments on commit 7d48dcc

Please sign in to comment.