What is the most elegant way to give `op` a custom...
# ask-community
i
What is the most elegant way to give
op
a custom name? The most simple I've found so far is something like this:
my_op.configured(None, "my_custom_name")()
but maybe there are more elegant ways?
🤖 1
a
For just changing the name you can do:
my_op.alias("my_custom_name")()
❤️ 1
i
Great! Thanks Alex
D 1