-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
707 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
"""Iterators for particular types of collections | ||
Most, if not all, implementation come in the form of a function that takes | ||
a collection identifier or a collection location (e.g., a file system path), | ||
and possibly some additional options. When called, an iterator is returned | ||
that produces collection items in the form of data class instances of | ||
a given type. The particular type can be different across different | ||
collections. | ||
.. currentmodule:: datalad_core.iter_collections | ||
.. autosummary:: | ||
:toctree: generated | ||
iter_gitworktree | ||
GitTreeItemType | ||
GitWorktreeItem | ||
""" | ||
|
||
__all__ = [ | ||
'GitTreeItemType', | ||
'GitWorktreeItem', | ||
'iter_gitworktree', | ||
] | ||
|
||
from .gitworktree import ( | ||
GitTreeItemType, | ||
GitWorktreeItem, | ||
iter_gitworktree, | ||
) |
Oops, something went wrong.