Skip to content

Commit bd28245

Browse files
committed
Make dir structure clearer
1 parent 29af335 commit bd28245

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

notebooks/beginner/html/modules_and_packages.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11827,24 +11827,24 @@ <h2 id="Why-to-organize-your-code-into-modules-and-packages">Why to organize you
1182711827
<div class="text_cell_render border-box-sizing rendered_html">
1182811828
<h2 id="How-to-use">How to use<a class="anchor-link" href="#How-to-use">&#182;</a></h2><p>Let's use the following directory structure as an example:</p>
1182911829

11830-
<pre><code>food_store
11830+
<pre><code>food_store/
1183111831
__init__.py
1183211832

11833-
product
11833+
product/
1183411834
__init__.py
1183511835

11836-
fruit
11836+
fruit/
1183711837
__init__.py
1183811838
apple.py
1183911839
banana.py
1184011840

11841-
drink
11841+
drink/
1184211842
__init__.py
1184311843
juice.py
1184411844
milk.py
1184511845
beer.py
1184611846

11847-
cashier
11847+
cashier/
1184811848
__ini__.py
1184911849
receipt.py
1185011850
calculator.py</code></pre>

notebooks/beginner/modules_and_packages.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,24 +33,24 @@
3333
"\n",
3434
" \n",
3535
"```\n",
36-
"food_store\n",
36+
"food_store/\n",
3737
" __init__.py\n",
3838
" \n",
39-
" product\n",
39+
" product/\n",
4040
" __init__.py\n",
4141
" \n",
42-
" fruit\n",
42+
" fruit/\n",
4343
" __init__.py\n",
4444
" apple.py\n",
4545
" banana.py\n",
4646
" \n",
47-
" drink\n",
47+
" drink/\n",
4848
" __init__.py\n",
4949
" juice.py\n",
5050
" milk.py\n",
5151
" beer.py\n",
5252
"\n",
53-
" cashier\n",
53+
" cashier/\n",
5454
" __ini__.py\n",
5555
" receipt.py\n",
5656
" calculator.py\n",

0 commit comments

Comments
 (0)