Closed rikvl closed 7 months ago
Using click version 7 caused alpenhorn to crash because it turns functions like def push_success into commands like push-success
click
def push_success
push-success
I implemented a solution at the click.group level as suggested here: https://click.palletsprojects.com/en/8.1.x/upgrading/#upgrading-to-7-0
click.group
Looks good. It would probably be helpful to have a comment in there explaining why this is being done
Using
click
version 7 caused alpenhorn to crash because it turns functions likedef push_success
into commands likepush-success
I implemented a solution at the
click.group
level as suggested here: https://click.palletsprojects.com/en/8.1.x/upgrading/#upgrading-to-7-0