DiamondLightSource / tickit

Event-based hardware simulation framework
Apache License 2.0
6 stars 0 forks source link

Make adapter.after_update optionally async #169

Open callumforrester opened 1 year ago

callumforrester commented 1 year ago

Allow and mange both signatures

def after_update(self) -> None:
    ...

async def after_update(self) -> None:
    ...