Skip to content

Commit ac6ffb5

Browse files
committed
_async(chore): Export AsyncHg and AsyncHgSync
why: Make new Hg async classes importable.
1 parent 2d935b0 commit ac6ffb5

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/libvcs/cmd/_async/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
from __future__ import annotations
1212

1313
from libvcs.cmd._async.git import AsyncGit
14+
from libvcs.cmd._async.hg import AsyncHg
1415

1516
__all__ = [
1617
"AsyncGit",
18+
"AsyncHg",
1719
]

src/libvcs/sync/_async/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
from __future__ import annotations
1212

1313
from libvcs.sync._async.git import AsyncGitSync
14+
from libvcs.sync._async.hg import AsyncHgSync
1415

1516
__all__ = [
1617
"AsyncGitSync",
18+
"AsyncHgSync",
1719
]

0 commit comments

Comments
 (0)