Merge pull request #4 from cjonesuk/patch-1

Allow iteration over folder paths
This commit is contained in:
Benjamin Berman 2024-03-30 14:25:25 -07:00 committed by GitHub
commit 5208618681
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()