From 197b4aca34e35016d5bb91b9272fc786bcebe1d9 Mon Sep 17 00:00:00 2001 From: Cory Todd Date: Sat, 10 Jun 2023 19:58:11 -0700 Subject: [PATCH] jsondiff: include YAML dumper/loader in __all__ Include the new YAML tools in the __all__ export for consistency. Signed-off-by: Cory Todd --- jsondiff/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jsondiff/__init__.py b/jsondiff/__init__.py index b2a2001..a984ad8 100644 --- a/jsondiff/__init__.py +++ b/jsondiff/__init__.py @@ -666,4 +666,6 @@ def similarity(a, b, cls=JsonDiffer, **kwargs): "JsonDiffer", "JsonDumper", "JsonLoader", + "YamlDumper", + "YamlLoader" ]