Skip to content
Snippets Groups Projects
Commit 7a788270 authored by Jakub Ziebinski's avatar Jakub Ziebinski
Browse files

Move UnlockedWallet and AsyncUnlockedWallet to the main __init__.py

parent 4d85d1ed
No related branches found
No related tags found
1 merge request!70Draft: Schemas update
Pipeline #112852 passed
...@@ -3,11 +3,12 @@ from __future__ import annotations ...@@ -3,11 +3,12 @@ from __future__ import annotations
from beekeepy._handle import close_already_running_beekeeper from beekeepy._handle import close_already_running_beekeeper
from beekeepy._interface.abc.asynchronous.beekeeper import Beekeeper as AsyncBeekeeper from beekeepy._interface.abc.asynchronous.beekeeper import Beekeeper as AsyncBeekeeper
from beekeepy._interface.abc.asynchronous.session import Session as AsyncSession from beekeepy._interface.abc.asynchronous.session import Session as AsyncSession
from beekeepy._interface.abc.asynchronous.wallet import UnlockedWallet as AsyncUnlockedWallet
from beekeepy._interface.abc.asynchronous.wallet import Wallet as AsyncWallet from beekeepy._interface.abc.asynchronous.wallet import Wallet as AsyncWallet
from beekeepy._interface.abc.packed_object import PackedAsyncBeekeeper, PackedSyncBeekeeper from beekeepy._interface.abc.packed_object import PackedAsyncBeekeeper, PackedSyncBeekeeper
from beekeepy._interface.abc.synchronous.beekeeper import Beekeeper from beekeepy._interface.abc.synchronous.beekeeper import Beekeeper
from beekeepy._interface.abc.synchronous.session import Session from beekeepy._interface.abc.synchronous.session import Session
from beekeepy._interface.abc.synchronous.wallet import Wallet from beekeepy._interface.abc.synchronous.wallet import UnlockedWallet, Wallet
from beekeepy._interface.settings import Settings from beekeepy._interface.settings import Settings
__all__ = [ __all__ = [
...@@ -21,4 +22,6 @@ __all__ = [ ...@@ -21,4 +22,6 @@ __all__ = [
"Session", "Session",
"Settings", "Settings",
"Wallet", "Wallet",
"UnlockedWallet",
"AsyncUnlockedWallet",
] ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment