Skip to content

Commit 2b2f2b9

Browse files
author
Aravindhan Palanisamy
committed
lint
1 parent bae388d commit 2b2f2b9

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

nisystemlink/clients/test_plan/test_plan_templates/_test_plan_templates_client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
from typing import List, Optional
44

55
from nisystemlink.clients import core
6+
67
from uplink import Field, retry
78

89
from nisystemlink.clients.core._uplink._base_client import BaseClient
10+
911
from nisystemlink.clients.core._uplink._methods import post
1012

1113
from . import models

nisystemlink/clients/test_plan/test_plan_templates/models/_delete_test_plan_templates_partial_success_response.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
from typing import List, Optional
2+
23
from nisystemlink.clients.core._api_error import ApiError
34
from nisystemlink.clients.core._uplink._json_model import JsonModel
45

56

67
class DeleteTestPlanTemplatesPartialSuccessResponse(JsonModel):
78
"""The result of deleting multiple test plan templates
8-
when one or more test plan templates could not be deleted."""
9+
when one or more test plan templates could not be deleted.
10+
"""
911

1012
deleted_test_plan_template_ids: List[str]
1113
"""The IDs of the test plan template that could not be deleted."""

nisystemlink/clients/test_plan/test_plan_templates/models/_test_plan_templates.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from typing import Dict, List, Optional
2+
23
from nisystemlink.clients.core._uplink._json_model import JsonModel
34
from nisystemlink.clients.test_plan.models._execution_definition import (
45
ExecutionDefinition,
@@ -47,7 +48,8 @@ class TestPlanTemplateBase(JsonModel):
4748

4849
system_filter: Optional[str] = None
4950
"""The LINQ filter string is used to filter the potential list of
50-
systems capable of executing test plans created from this template."""
51+
systems capable of executing test plans created from this template.
52+
"""
5153

5254
execution_actions: Optional[List[ExecutionDefinition]] = None
5355
"""Defines the executions that will be used for test plan actions created from this template.

tests/integration/test_plan/test_plan_templates/test_test_plan_template.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import pytest
44

55
from nisystemlink.clients.core._http_configuration import HttpConfiguration
6+
67
from nisystemlink.clients.test_plan.models._execution_definition import ManualExecution
78
from nisystemlink.clients.test_plan.test_plan_templates import TestPlanTemplateClient
89
from nisystemlink.clients.test_plan.test_plan_templates.models import (

0 commit comments

Comments
 (0)