Skip to content

Commit

Permalink
markdown source builds
Browse files Browse the repository at this point in the history
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
  • Loading branch information
actions-user committed Nov 5, 2024
1 parent fd1c033 commit ce6089c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion md5sum.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"episodes/looping-data-sets.md" "ff153b594bf9543fa2ed4890c4d3ef71" "site/built/looping-data-sets.md" "2024-10-29"
"episodes/pandas.md" "5f2461a95e56e8aa3aa6851f12d3d566" "site/built/pandas.md" "2024-06-17"
"episodes/conditionals.md" "b567ac5270b3dc82c4ed119870a0a890" "site/built/conditionals.md" "2024-06-17"
"episodes/writing-functions.md" "99171306646b8b63c66a493acef12e63" "site/built/writing-functions.md" "2024-06-17"
"episodes/writing-functions.md" "0b81f14ebdc51157d861751893131687" "site/built/writing-functions.md" "2024-11-05"
"episodes/tidy.md" "04363bbe35378f8a4829ae04f4c17c2c" "site/built/tidy.md" "2024-11-05"
"episodes/data-visualisation.md" "c4713b131f46fdb0cfb94e1531803f9e" "site/built/data-visualisation.md" "2024-11-05"
"episodes/wrap.md" "6e2c8fe8bab006ad451a481d27982d06" "site/built/wrap.md" "2024-06-17"
Expand Down
4 changes: 2 additions & 2 deletions writing-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ In the date example above, we printed the results of the function code to output
```python
def calc_fine(days_overdue):
if days_overdue <= 10:
fine = days_overdue * 0.25
fine = days_overdue * 0.25
else:
fine = (days_overdue * 0.25) + (days_overdue * .50)
fine = days_overdue * 0.75
return fine

fine = calc_fine(12)
Expand Down

0 comments on commit ce6089c

Please sign in to comment.