Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jph00 committed Nov 1, 2020
1 parent ca0d3d0 commit fd4cfac
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/export.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ <h2 id="Basic-foundations">Basic foundations<a class="anchor-link" href="#Basic-


<div class="output_markdown rendered_html output_subarea ">
<h3 id="Config" class="doc_header"><code>Config</code><a href="https://github.com/fastai/fastcore/tree/master/fastcore/foundation.py#L330" class="source_link" style="float:right">[source]</a></h3><blockquote><p><code>Config</code>(<strong><code>cfg_name</code></strong>=<em><code>'settings.ini'</code></em>)</p>
<h3 id="Config" class="doc_header"><code>Config</code><a href="https://github.com/fastai/fastcore/tree/master/fastcore/foundation.py#L325" class="source_link" style="float:right">[source]</a></h3><blockquote><p><code>Config</code>(<strong><code>cfg_name</code></strong>=<em><code>'settings.ini'</code></em>)</p>
</blockquote>
<p>Reading and writing <code>settings.ini</code></p>

Expand Down
2 changes: 1 addition & 1 deletion nbdev/export2html.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def _show_doc_cell(name, cls_lvl=None):

def add_show_docs(cells, cls_lvl=None):
"Add `show_doc` for each exported function or class"
documented = L(cells).map_filter(check_re, pat=_re_show_doc).map(Self.group(1))
documented = L(cells).map(check_re, pat=_re_show_doc).filter().map(Self.group(1))
res = []
for cell in cells:
res.append(cell)
Expand Down
2 changes: 1 addition & 1 deletion nbs/03_export2html.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@
"\n",
"def add_show_docs(cells, cls_lvl=None):\n",
" \"Add `show_doc` for each exported function or class\"\n",
" documented = L(cells).map_filter(check_re, pat=_re_show_doc).map(Self.group(1))\n",
" documented = L(cells).map(check_re, pat=_re_show_doc).filter().map(Self.group(1))\n",
" res = []\n",
" for cell in cells:\n",
" res.append(cell)\n",
Expand Down
2 changes: 1 addition & 1 deletion settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ status = 4
min_python = 3.6
audience = Developers
language = English
requirements = fastcore>=1.2.0 nbformat>=4.4.0 nbconvert<6 pyyaml jupyter_client ipykernel
requirements = fastcore>=1.3.1 nbformat>=4.4.0 nbconvert<6 pyyaml jupyter_client ipykernel
conda_requirements = nb_conda
console_scripts = nbdev_build_lib=nbdev.export2html:nbdev_build_lib
nbdev_update_lib=nbdev.sync:nbdev_update_lib
Expand Down

0 comments on commit fd4cfac

Please sign in to comment.