Method
__init__
(
self,
module_name: str,
class_name: str,
properties: dict[str, (PythonType | GithubClass | None, bool)],
completable: bool,
deprecate: bool,
)
Source from the content-addressed store, hash-verified
| 839 | |
| 840 | class ApplySchemaTransformer(ApplySchemaBaseTransformer): |
| 841 | def __init__( |
| 842 | self, |
| 843 | module_name: str, |
| 844 | class_name: str, |
| 845 | properties: dict[str, (PythonType | GithubClass | None, bool)], |
| 846 | completable: bool, |
| 847 | deprecate: bool, |
| 848 | ): |
| 849 | super().__init__(module_name, class_name, properties, deprecate) |
| 850 | self.completable = completable |
| 851 | |
| 852 | @staticmethod |
| 853 | def deprecate_function(node: cst.FunctionDef) -> cst.FunctionDef: |
Callers
nothing calls this directly
Tested by
no test coverage detected