Starting with Click 8.5.0, LazyFile is deprecated and scheduled for removal in version 9:
It's used in
|
class CustomLazyFile(click.utils.LazyFile): |
|
def __init__( |
It's not urgent since this project constrains Click to <9, but re-implementing the functionality LazyFile might be rather easy.
Starting with Click 8.5.0,
LazyFileis deprecated and scheduled for removal in version 9:It's used in
check-jsonschema/src/check_jsonschema/cli/param_types.py
Lines 126 to 127 in d86c4c6
It's not urgent since this project constrains Click to <9, but re-implementing the functionality
LazyFilemight be rather easy.