From 1f1c69c0f103146fd57a65db33e3e1b61eb059cf Mon Sep 17 00:00:00 2001 From: Kaiyuan Eric Chen Date: Thu, 5 Jun 2025 22:05:22 -0700 Subject: [PATCH] Fix BaseLoader __iter__ typo --- robodm/loader/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robodm/loader/base.py b/robodm/loader/base.py index c16cd37..607b77f 100644 --- a/robodm/loader/base.py +++ b/robodm/loader/base.py @@ -13,5 +13,5 @@ def __init__(self, path): def __len__(self): raise NotImplementedError - def __iter___(self): + def __iter__(self): raise NotImplementedError