From f64d0e149786f1d82d0c34a2d19afdabd0288df5 Mon Sep 17 00:00:00 2001 From: MylesBartlett Date: Mon, 22 Jul 2024 15:42:48 +0100 Subject: [PATCH] Remove Iter from __all__. --- serox/collections/hash_set.py | 1 - serox/vec.py | 1 - 2 files changed, 2 deletions(-) diff --git a/serox/collections/hash_set.py b/serox/collections/hash_set.py index 4dc0ac1..154f4d9 100644 --- a/serox/collections/hash_set.py +++ b/serox/collections/hash_set.py @@ -10,7 +10,6 @@ __all__ = [ "HashSet", - "Iter", ] diff --git a/serox/vec.py b/serox/vec.py index b861a5f..c4d80cd 100644 --- a/serox/vec.py +++ b/serox/vec.py @@ -26,7 +26,6 @@ from serox.option import Null, Option, Some __all__ = [ - "Iter", "Vec", ]