(self, name: str, module: t.Any, docstring: str | None = None)
| 9 | |
| 10 | class Sentinel: |
| 11 | def __init__(self, name: str, module: t.Any, docstring: str | None = None) -> None: |
| 12 | self.name = name |
| 13 | self.module = module |
| 14 | if docstring: |
| 15 | self.__doc__ = docstring |
| 16 | |
| 17 | def __repr__(self) -> str: |
| 18 | return str(self.module) + "." + self.name |
nothing calls this directly
no outgoing calls
no test coverage detected