소스 검색

Allow attachment body to be an async callable

Kirk Trombley 3 년 전
부모
커밋
cd3512b3d9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      rollbot/rollbot/types.py

+ 1 - 1
rollbot/rollbot/types.py

@@ -25,7 +25,7 @@ __all__ = [
 @dataclass
 class Attachment:
     name: str
-    body: Union[str, bytes, None]
+    body: Union[str, bytes, None, Callable[[], Coroutine[Any, None, Any]]]
 
 
 @dataclass