I would like the BlueAPI to handle dots when parsing bluesky plans. So that I can access plans that are contained within classes ie: ```python class Johnny5(): robot: NOVARobot = inject("Johnny5") @classmethod def self_destruct(self) -> MsgGenerator: yield from abs_set(self.robot.primed, True) yield from trigger(self.robot.detonate) @classmethod def wave_arm(self) -> MsgGenerator: yield from abs_set(self.robot.arm, 0) yield from abs_set(self.robot.arm, 10) ``` such that in the jython terminal I can do something like ```python run_plan("Johnny5.self_destruct") ```