File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -110,8 +110,8 @@ def _f(f):
110
110
# %% ../nbs/07_meta.ipynb
111
111
def delegates (to :FunctionType = None , # Delegatee
112
112
keep = False , # Keep `kwargs` in decorated function?
113
- but :list = None ,
114
- sort_args = False ): # Exclude these parameters from signature
113
+ but :list = None , # Exclude these parameters from signature
114
+ sort_args = False ): # Sort arguments alphabetically
115
115
"Decorator: replace `**kwargs` in signature with params from `to`"
116
116
if but is None : but = []
117
117
def _f (f ):
Original file line number Diff line number Diff line change 904
904
" #|export\n " ,
905
905
" def delegates(to:FunctionType=None, # Delegatee\n " ,
906
906
" keep=False, # Keep `kwargs` in decorated function?\n " ,
907
- " but:list=None,\n " ,
908
- " sort_args=False): # Exclude these parameters from signature \n " ,
907
+ " but:list=None, # Exclude these parameters from signature \n " ,
908
+ " sort_args=False): # Sort arguments alphabetically \n " ,
909
909
" \" Decorator: replace `**kwargs` in signature with params from `to`\"\n " ,
910
910
" if but is None: but = []\n " ,
911
911
" def _f(f):\n " ,
You can’t perform that action at this time.
0 commit comments