Skip to content

Commit cc3fd90

Browse files
committed
spaces
1 parent d05dcc4 commit cc3fd90

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

nbdev/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,8 @@ def update_proj(path):
313313
fname = path/_pyproj
314314
if not fname.exists(): fname.write_text(pyproj_tmpl)
315315
txt = fname.read_text()
316-
txt = _re_proj.sub(f'name="{get_config().lib_name}"', txt)
317-
txt = _re_reqpy.sub(f'requires-python=">={get_config().min_python}"', txt)
316+
txt = _re_proj.sub(f'name = "{get_config().lib_name}"', txt)
317+
txt = _re_reqpy.sub(f'requires-python = ">={get_config().min_python}"', txt)
318318
fname.write_text(txt)
319319

320320
# %% ../nbs/api/01_config.ipynb #bdf57184

nbs/api/01_config.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -793,8 +793,8 @@
793793
" fname = path/_pyproj\n",
794794
" if not fname.exists(): fname.write_text(pyproj_tmpl)\n",
795795
" txt = fname.read_text()\n",
796-
" txt = _re_proj.sub(f'name=\"{get_config().lib_name}\"', txt)\n",
797-
" txt = _re_reqpy.sub(f'requires-python=\">={get_config().min_python}\"', txt)\n",
796+
" txt = _re_proj.sub(f'name = \"{get_config().lib_name}\"', txt)\n",
797+
" txt = _re_reqpy.sub(f'requires-python = \">={get_config().min_python}\"', txt)\n",
798798
" fname.write_text(txt)"
799799
]
800800
},

0 commit comments

Comments
 (0)