def test_not_None(self) -> None: assert bus.append_docstring('hello ', 'world') == "hello world"
def test_None(self) -> None: assert bus.append_docstring(None, "stuff") is None