my code is similar to this : ```py
class SomeView(discord.ui.View):
def init(self, ctx, test: str) -> None:
super().init()
self.ctx = ctx
self.test = test
@discord.ui.button(label=f'Yes, {self.test}') # Error Here
async def callback(self, interaction: discord.Interaction, button: discord.ui.Button) -> None:
...``` and i need to access `test` that i passed