Skip to content

Commit 0fe1d2c

Browse files
committed
change name of exportdir to exports
1 parent 5236e61 commit 0fe1d2c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

alephclient/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from alephclient.errors import AlephException
99
from alephclient.crawldir import crawl_dir
1010
from alephclient.fetchdir import fetch_collection, fetch_entity
11-
from alephclient.exportdir import list_exports, format_exports_table, download_export
11+
from alephclient.exports import list_exports, format_exports_table, download_export
1212

1313
log = logging.getLogger(__name__)
1414

alephclient/tests/test_export.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from unittest.mock import MagicMock
22

33
from alephclient.api import AlephAPI
4-
from alephclient.exportdir import list_exports, format_exports_table, download_export
4+
from alephclient.exports import list_exports, format_exports_table, download_export
55

66

77
FAKE_EXPORT = {
@@ -103,7 +103,7 @@ def _mock_download(self, mocker, content=b"file content"):
103103
return_value=mock_response,
104104
)
105105
mocker.patch(
106-
"alephclient.exportdir.list_exports",
106+
"alephclient.exports.list_exports",
107107
return_value=[FAKE_EXPORT],
108108
)
109109

0 commit comments

Comments
 (0)