Skip to content

Commit d336eeb

Browse files
authored
Merge pull request #1491 from AnswerDotAI/fix-llmctxissue
Fix llmctxissue
2 parents 8695a84 + a3738bf commit d336eeb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nbdev/serve.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def _is_qpy(path:Path):
3636

3737
# %% ../nbs/api/17_serve.ipynb
3838
def _proc_file(s, cache, path, mtime=None):
39-
skips = ('_proc', '_docs', '_site')
39+
skips = ('_proc', '_docs', '_site', 'settings.ini')
4040
if not s.is_file() or any(o[0]=='.' or o in skips for o in s.parts): return
4141
d = cache/s.relative_to(path)
4242
if s.suffix=='.py': d = d.with_suffix('')

nbs/api/17_serve.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"source": [
8787
"#|export\n",
8888
"def _proc_file(s, cache, path, mtime=None):\n",
89-
" skips = ('_proc', '_docs', '_site')\n",
89+
" skips = ('_proc', '_docs', '_site', 'settings.ini')\n",
9090
" if not s.is_file() or any(o[0]=='.' or o in skips for o in s.parts): return\n",
9191
" d = cache/s.relative_to(path)\n",
9292
" if s.suffix=='.py': d = d.with_suffix('')\n",

0 commit comments

Comments
 (0)