(message: types.ContentUnion)
| 180 | |
| 181 | |
| 182 | def get_user_content(message: types.ContentUnion) -> types.Content: |
| 183 | return message if isinstance(message, types.Content) else UserContent(message) |
| 184 | |
| 185 | |
| 186 | class TestInMemoryRunner(AfInMemoryRunner): |
no test coverage detected