From 80dc67e656767c0fd0570753a10a82711a8215a4 Mon Sep 17 00:00:00 2001 From: Thor Whalen <1906276+thorwhalen@users.noreply.github.com> Date: Fri, 6 Dec 2024 09:58:56 +0100 Subject: [PATCH] feat: compare_sets promoted to root --- lkj/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lkj/__init__.py b/lkj/__init__.py index fca04d3..a571eb3 100644 --- a/lkj/__init__.py +++ b/lkj/__init__.py @@ -3,6 +3,7 @@ """ from lkj.iterables import ( + compare_sets, # Compare two iterables and return common, left-only, and right-only elements index_of, # Get the index of an element in an iterable get_by_value, # Get a dictionary from a list of dictionaries by a field value )