This commit is contained in:
SDE
2023-05-16 17:14:16 +03:00
commit c17da7eaab
157 changed files with 14503 additions and 0 deletions

5
files_widget/utils.py Normal file
View File

@@ -0,0 +1,5 @@
from functools import partial
def curry(func, *a, **kw):
return partial(func, *a, **kw)