Skip to content

Commit db3565b

Browse files
committed
Fix style issues
1 parent 13e597b commit db3565b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/confcom/azext_confcom/lib/policy.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
# Licensed under the MIT License. See License.txt in the project root for license information.
44
# --------------------------------------------------------------------------------------------
55

6-
from dataclasses import dataclass, field, is_dataclass
7-
import inspect
8-
import sys
6+
from dataclasses import dataclass, field
97
from typing import Literal, Optional
108

119

@@ -75,6 +73,7 @@ class FragmentReference:
7573
path: Optional[str] = None
7674

7775

76+
# pylint: disable=too-many-instance-attributes
7877
@dataclass
7978
class Container:
8079
allow_elevated: bool = False
@@ -94,6 +93,7 @@ class Container:
9493
working_dir: str = "/"
9594

9695

96+
# pylint: disable=too-many-instance-attributes
9797
@dataclass
9898
class Policy:
9999
package: str = "policy"

0 commit comments

Comments
 (0)