Skip to content

Commit c2cd643

Browse files
committed
export
1 parent 1720fea commit c2cd643

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

nbs/03_xtras.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1791,7 +1791,7 @@
17911791
"metadata": {},
17921792
"outputs": [],
17931793
"source": [
1794-
"#| exports\n",
1794+
"#| export\n",
17951795
"def trim_wraps(f, n=1):\n",
17961796
" \"Like wraps, but removes the first n parameters from the signature\"\n",
17971797
" import inspect\n",
@@ -1842,7 +1842,7 @@
18421842
"metadata": {},
18431843
"outputs": [],
18441844
"source": [
1845-
"#| exports\n",
1845+
"#| export\n",
18461846
"class _save_iter:\n",
18471847
" def __init__(self, g, *args, **kw): self.g,self.args,self.kw = g,args,kw\n",
18481848
" def __iter__(self): yield from self.g(self, *self.args, **self.kw)\n",

0 commit comments

Comments
 (0)