We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
PostBuildStep
1 parent f36faa9 commit f850017Copy full SHA for f850017
buildbot_nix/models.py
@@ -1,6 +1,7 @@
1
from collections.abc import Mapping
2
from enum import Enum
3
from pathlib import Path
4
+from typing import Any
5
6
from buildbot.plugins import steps, util
7
from pydantic import BaseModel, ConfigDict, Field, TypeAdapter
@@ -32,7 +33,7 @@ class Interpolate(BaseModel):
32
33
nix_type: str = Field(alias="_type")
34
value: str
35
- def __init__(self, value: str) -> None:
36
+ def __init__(self, value: str, **kwargs: Any) -> None:
37
super().__init__(nix_type="interpolate", value=value)
38
39
0 commit comments