(message: types.ContentUnion)
| 207 | |
| 208 | |
| 209 | def get_user_content(message: types.ContentUnion) -> types.Content: |
| 210 | return message if isinstance(message, types.Content) else UserContent(message) |
| 211 | |
| 212 | |
| 213 | class TestInMemoryRunner(AfInMemoryRunner): |
no test coverage detected