Skip to content

Commit

Permalink
Merge pull request #1491 from AnswerDotAI/fix-llmctxissue
Browse files Browse the repository at this point in the history
Fix llmctxissue
  • Loading branch information
jph00 authored Feb 6, 2025
2 parents 8695a84 + a3738bf commit d336eeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nbdev/serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def _is_qpy(path:Path):

# %% ../nbs/api/17_serve.ipynb
def _proc_file(s, cache, path, mtime=None):
skips = ('_proc', '_docs', '_site')
skips = ('_proc', '_docs', '_site', 'settings.ini')
if not s.is_file() or any(o[0]=='.' or o in skips for o in s.parts): return
d = cache/s.relative_to(path)
if s.suffix=='.py': d = d.with_suffix('')
Expand Down
2 changes: 1 addition & 1 deletion nbs/api/17_serve.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"source": [
"#|export\n",
"def _proc_file(s, cache, path, mtime=None):\n",
" skips = ('_proc', '_docs', '_site')\n",
" skips = ('_proc', '_docs', '_site', 'settings.ini')\n",
" if not s.is_file() or any(o[0]=='.' or o in skips for o in s.parts): return\n",
" d = cache/s.relative_to(path)\n",
" if s.suffix=='.py': d = d.with_suffix('')\n",
Expand Down

0 comments on commit d336eeb

Please sign in to comment.