Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
6 changes: 3 additions & 3 deletions src/confcom/azext_confcom/lib/policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------

from dataclasses import dataclass, field, is_dataclass
import inspect
import sys
from dataclasses import dataclass, field
from typing import Literal, Optional


Expand Down Expand Up @@ -75,6 +73,7 @@ class FragmentReference:
path: Optional[str] = None


# pylint: disable=too-many-instance-attributes
@dataclass
class Container:
allow_elevated: bool = False
Expand All @@ -94,6 +93,7 @@ class Container:
working_dir: str = "/"


# pylint: disable=too-many-instance-attributes
@dataclass
class Policy:
package: str = "policy"
Expand Down
2 changes: 1 addition & 1 deletion src/confcom/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

logger.warn("Wheel is not available, disabling bdist_wheel hook")

VERSION = "1.4.0"
VERSION = "1.4.1"

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down
Loading