Returns the functions that have not been bound using importApi() yet.
(cls)
| 117 | |
| 118 | @classmethod |
| 119 | def unboundFunctions(cls) -> dict[str, Any]: |
| 120 | """Returns the functions that have not been bound using importApi() yet.""" |
| 121 | cls.initialize() |
| 122 | return { |
| 123 | name: func |
| 124 | for name, func in cls._api.items() |
| 125 | if name not in cls._bound_signatures |
| 126 | } |
| 127 | |
| 128 | # TODO(user): Any -> ApiFunction for the return type. |
| 129 | @classmethod |
no test coverage detected