So simply said, i have this slash in my class, but it asks for ctx parameter, when i removed it, it put ctx parameter into self
@discord.ext.commands.is_owner()
@option('collection', description='Choose database', choices=['Games', 'Site exceptions', 'exceptions'])
async def add_to(self, ctx, collection: str, string: str):
listing = self.retreive_list(collection)
print(listing)```
||