You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
variable fieldnames (meant to be used when saving data to CSV file) not used at all and also contains spaces in column names
our data contains some unicode characters but do not specify the encoding when reading the data in (and we do not know what the encoding that original data used but could try with UTF-8)
missing README (even though the repo itself has a README) explaining the software, dependencies and usage
duration_hours = int(hours) + int(minutes)/6 # there is an intentional bug on this line (should be dividing by 60)
The text was updated successfully, but these errors were encountered:
anenadic
changed the title
A list of problems with the code in this repository
A list of problems with the code in this repository - for teaching
May 21, 2024
This list contains a number of things that can be fixed/improved with the code and data in this repository:
data.json
could have a more descriptive file namemy code v2.py
Python script should not contain blank spaces as it may cause problems when running from a command linew
duration_hours = int(hours) + int(minutes)/6
# there is an intentional bug on this line (should be dividing by 60)The text was updated successfully, but these errors were encountered: