add
This commit is contained in:
22
ccxt/static_dependencies/toolz/curried/exceptions.py
Normal file
22
ccxt/static_dependencies/toolz/curried/exceptions.py
Normal file
@@ -0,0 +1,22 @@
|
||||
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__
|
||||
Reference in New Issue
Block a user