(self)
| 27 | |
| 28 | class CustomSource(Source): |
| 29 | def __init__(self): |
| 30 | super().__init__(name='custom') # Initialising our custom source with the name 'custom'. |
| 31 | |
| 32 | async def load_item(self, client, query: str): |
| 33 | if 'keyword' in query: |
nothing calls this directly
no outgoing calls
no test coverage detected