Skip to content

Commit a496abe

Browse files
committed
fix: dataclass inheritance ordering and ruff FBT lint errors
1 parent 1135cbe commit a496abe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

python-pulumi/src/ptd/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ class WorkloadConfig:
350350
sites: typing.Mapping[str, SiteConfig]
351351
true_name: str
352352
tenant_name: str | None = dataclasses.field(default=None, kw_only=True) # Human-readable name for the tenant
353-
third_party_telemetry_enabled: bool = True
353+
third_party_telemetry_enabled: bool = dataclasses.field(default=True, kw_only=True)
354354

355355
@property
356356
def domain(self) -> str:

python-pulumi/src/ptd/pulumi_resources/tigera_operator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ def __init__(
1010
self,
1111
name: str,
1212
release: str,
13+
*args,
1314
version: str = "3.29.3",
1415
third_party_telemetry_enabled: bool = True,
15-
*args,
1616
**kwargs,
1717
):
1818
super().__init__(

0 commit comments

Comments
 (0)