Files
ccxt_with_mt5/ccxt/static_dependencies/toolz/curried/exceptions.py
lz_db 0fab423a18 add
2025-11-16 12:31:03 +08:00

23 lines
344 B
Python

from .. import (
curry,
merge_with,
merge
)
__all__ = ['merge_with', 'merge']
@curry
def merge_with(func, d, *dicts, **kwargs):
return merge_with(func, d, *dicts, **kwargs)
@curry
def merge(d, *dicts, **kwargs):
return merge(d, *dicts, **kwargs)
merge_with.__doc__ = merge_with.__doc__
merge.__doc__ = merge.__doc__