Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Define public API of datalad_next.types #617

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 (

Check warning on line 54 in datalad_next/annexremotes/archivist.py

View check run for this annotation

Codecov / codecov/patch

datalad_next/annexremotes/archivist.py#L54

Added line #L54 was not covered by tests
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

Check warning on line 15 in datalad_next/types/__init__.py

View check run for this annotation

Codecov / codecov/patch

datalad_next/types/__init__.py#L13-L15

Added lines #L13 - L15 were not covered by tests
Loading