Skip to content

Commit ce6089c

Browse files
committed
markdown source builds
Auto-generated via `{sandpaper}` Source : 1290217 Branch : main Author : Cody Hennesy <[email protected]> Time : 2024-11-05 17:13:44 +0000 Message : Merge pull request #145 from vinegar-tom/patch-2 Clarify overdue fine function
1 parent fd1c033 commit ce6089c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

md5sum.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"episodes/looping-data-sets.md" "ff153b594bf9543fa2ed4890c4d3ef71" "site/built/looping-data-sets.md" "2024-10-29"
1313
"episodes/pandas.md" "5f2461a95e56e8aa3aa6851f12d3d566" "site/built/pandas.md" "2024-06-17"
1414
"episodes/conditionals.md" "b567ac5270b3dc82c4ed119870a0a890" "site/built/conditionals.md" "2024-06-17"
15-
"episodes/writing-functions.md" "99171306646b8b63c66a493acef12e63" "site/built/writing-functions.md" "2024-06-17"
15+
"episodes/writing-functions.md" "0b81f14ebdc51157d861751893131687" "site/built/writing-functions.md" "2024-11-05"
1616
"episodes/tidy.md" "04363bbe35378f8a4829ae04f4c17c2c" "site/built/tidy.md" "2024-11-05"
1717
"episodes/data-visualisation.md" "c4713b131f46fdb0cfb94e1531803f9e" "site/built/data-visualisation.md" "2024-11-05"
1818
"episodes/wrap.md" "6e2c8fe8bab006ad451a481d27982d06" "site/built/wrap.md" "2024-06-17"

writing-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ In the date example above, we printed the results of the function code to output
8686
```python
8787
def calc_fine(days_overdue):
8888
if days_overdue <= 10:
89-
fine = days_overdue * 0.25
89+
fine = days_overdue * 0.25
9090
else:
91-
fine = (days_overdue * 0.25) + (days_overdue * .50)
91+
fine = days_overdue * 0.75
9292
return fine
9393

9494
fine = calc_fine(12)

0 commit comments

Comments
 (0)