Allow iteration over folder paths

This commit is contained in:
Christopher Jones 2024-03-22 17:01:17 +00:00 committed by GitHub
parent 0db040cc47
commit f8120bbd72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -61,6 +61,9 @@ class FolderNames:
def __len__(self):
return len(self.contents)
def __iter__(self):
return iter(self.contents)
def items(self):
return self.contents.items()