home / github / issue_comments

Menu
  • GraphQL API

issue_comments: 1563294669

This data as json

html_url issue_url id node_id user created_at updated_at author_association body reactions issue performed_via_github_app
https://github.com/simonw/datasette/issues/2078#issuecomment-1563294669 https://api.github.com/repos/simonw/datasette/issues/2078 1563294669 IC_kwDOBm6k_c5dLfvN 9599 2023-05-25T17:57:06Z 2023-05-25T17:57:06Z OWNER I may need to be able to detect if a class instance has an `async def __call__` method - I think I can do that like so: ```python def iscoroutinefunction(obj): if inspect.iscoroutinefunction(obj): return True if hasattr(obj, '__call__') and inspect.iscoroutinefunction(obj.__call__): return True return False ``` From https://github.com/encode/starlette/issues/886#issuecomment-606585152 {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} 1726236847  
Powered by Datasette · Queries took 1.007ms