Skip to content

Commit

Permalink
Merge pull request #617 from mih/rf-613-2
Browse files Browse the repository at this point in the history
Define public API of `datalad_next.types`
  • Loading branch information
mih authored Feb 5, 2024
2 parents aafed53 + f3534b5 commit 9cde5aa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
8 changes: 5 additions & 3 deletions datalad_next/annexremotes/archivist.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,11 @@
from datalad_next.datasets import LegacyAnnexRepo

from datalad_next.exceptions import CommandError
from datalad_next.types.annexkey import AnnexKey
from datalad_next.types.archivist import ArchivistLocator
from datalad_next.types.enums import ArchiveType
from datalad_next.types import (
AnnexKey,
ArchivistLocator,
ArchiveType,
)

from . import (
RemoteError,
Expand Down
11 changes: 8 additions & 3 deletions datalad_next/types/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
.. autosummary::
:toctree: generated
annexkey
archivist
enums
AnnexKey
ArchivistLocator
ArchiveType
"""


from .annexkey import AnnexKey
from .archivist import ArchivistLocator
from .enums import ArchiveType

0 comments on commit 9cde5aa

Please sign in to comment.