-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Improve argument processing and revert click version #38
Conversation
''' | ||
match = difflib.get_close_matches(text, options, n=1, cutoff=1.0) | ||
if len(match) == 0: | ||
raise ValidationError('%s is not a valid chain/network option' % text) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm @richtera 👍 Let's test with Wagyu
and devnet
(BLS change flow).
@richtera @fhildeb Tested on LUKSO Devnet (Validator index = 26). See https://app.clickup.com/t/2645698/DEV-5491?comment=90150028544728&threadedComment=90150029092182 and https://app.clickup.com/t/2645698/DEV-5491?comment=90150028544728&threadedComment=90150029092349 |
fix: Improve argument processing and revert click version