Skip to content

Commit 93a6a52

Browse files
committed
Fix bug in oci/layer.py __iter__() not returning Iterator
1 parent c912c4c commit 93a6a52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gardenlinux/oci/layer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def __iter__(self):
104104
:since: 0.7.0
105105
"""
106106

107-
iter(_SUPPORTED_MAPPING_KEYS)
107+
return iter(_SUPPORTED_MAPPING_KEYS)
108108

109109
def __len__(self):
110110
"""

0 commit comments

Comments
 (0)