Extracted b_partial to lib to fix import errors

This commit is contained in:
Artem30801
2020-02-28 18:21:08 +03:00
parent c314f50a4a
commit 91f46e7d11
3 changed files with 6 additions and 1 deletions

3
lib.py Normal file
View File

@@ -0,0 +1,3 @@
def b_partial(func, *args, **kwargs): # call argument blocker partial
return lambda *a: func(*args, **kwargs)