chore: rename rx modules

This commit is contained in:
rus07tam 2025-11-23 10:46:45 +00:00
parent e2286f1944
commit 7f83370873
9 changed files with 9 additions and 9 deletions

View file

@ -1,14 +1,14 @@
from .async_bindable import AsyncBindable from .async_bindable import AsyncBindable
from .base_bindable import BaseBindable, BindableSubscriber, ValueChanged from .base_bindable import BaseBindable, BindableSubscriber, ValueChanged
from .bindable import Bindable from .bindable import Bindable
from .chain import chain from .chains import chain
from .combine import combine from .combines import combine
from .concat import concat from .concats import concat
from .cond import cond from .conds import cond
from .const import const from .consts import const
from .filter import filter # noqa: W0622 # pylint: disable=W0622 from .filters import filter # noqa: W0622 # pylint: disable=W0622
from .map import map # noqa: W0622 # pylint: disable=W0622 from .maps import map # noqa: W0622 # pylint: disable=W0622
from .merge import async_merge, merge from .merges import async_merge, merge
__all__ = [ __all__ = [
"Bindable", "Bindable",

View file

@ -6,7 +6,7 @@ from snakia.utils import to_async
from .async_bindable import AsyncBindable from .async_bindable import AsyncBindable
from .base_bindable import ValueChanged from .base_bindable import ValueChanged
from .bindable import Bindable from .bindable import Bindable
from .concat import concat from .concats import concat
A = TypeVar("A") A = TypeVar("A")
B = TypeVar("B") B = TypeVar("B")