From 8f4cf6e3e94586de15efd059f6010bfd05c66ad1 Mon Sep 17 00:00:00 2001 From: aranega Date: Thu, 30 Nov 2023 10:30:05 -0600 Subject: [PATCH] Add new save_as shortcut --- iguala/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iguala/__init__.py b/iguala/__init__.py index 6ef802d..7d8e7f6 100644 --- a/iguala/__init__.py +++ b/iguala/__init__.py @@ -1,6 +1,6 @@ from .helpers import is_not, match -from .matchers import as_matcher, cond, extended, is_, regex +from .matchers import as_matcher, cond, extended, is_, regex, save_as from .paths import as_path -__ALL__ = ["match", "as_matcher", "as_path", "is_not", "cond", "regex", "extended"] +__ALL__ = ["match", "as_matcher", "as_path", "is_not", "cond", "regex", "extended", "save_as"] __version__ = "0.5.3-dev"