From e02303c89d51c5130bd1f8e73fd30701e0c35797 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Wed, 10 Apr 2024 14:43:23 -0400 Subject: [PATCH] Move the comment back to its target. --- path/masks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/path/masks.py b/path/masks.py index 13ae00a3..037ab5e8 100644 --- a/path/masks.py +++ b/path/masks.py @@ -4,10 +4,10 @@ import itertools -# from jaraco.functools from typing import Any, Callable +# from jaraco.functools def compose(*funcs: Callable[..., Any]) -> Callable[..., Any]: compose_two = lambda f1, f2: lambda *args, **kwargs: f1(f2(*args, **kwargs)) # noqa return functools.reduce(compose_two, funcs)