Method
__init__
(
self,
ids: dict[str, list[str]],
module_name: str,
class_name: str,
properties: dict[str, (str | dict | list | None, bool)],
deprecate: bool,
)
Source from the content-addressed store, hash-verified
| 1261 | |
| 1262 | class ApplySchemaTestTransformer(ApplySchemaBaseTransformer): |
| 1263 | def __init__( |
| 1264 | self, |
| 1265 | ids: dict[str, list[str]], |
| 1266 | module_name: str, |
| 1267 | class_name: str, |
| 1268 | properties: dict[str, (str | dict | list | None, bool)], |
| 1269 | deprecate: bool, |
| 1270 | ): |
| 1271 | super().__init__(module_name, class_name, properties, deprecate) |
| 1272 | self.ids = ids |
| 1273 | |
| 1274 | def get_value(self, data_type: PythonType | GithubClass | None) -> Any: |
| 1275 | if data_type is None: |
Callers
nothing calls this directly
Tested by
no test coverage detected