issues/236 -- address DeprecationWarning in `click`

In [`click==8.0.0`](https://click.palletsprojects.com/en/8.0.x/changes/#version-8-0-0), `MultiCommand.resultcallback` is renamed to `result_callback`, along with a deprecation warning. This change adopts the new naming convention.
pull/247/head
Sean Fitzgerald 2022-07-11 09:05:05 -07:00
rodzic edef1476fe
commit f7ecfee8f7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1110,7 +1110,7 @@ def piku():
pass
@piku.resultcallback()
@piku.result_callback()
def cleanup(ctx):
"""Callback from command execution -- add debugging to taste"""
pass