Skip to content

Commit cb59f6a

Browse files
committed
Minor changes
1 parent ae978d5 commit cb59f6a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"editor.cursorBlinking": "solid",
44
"editor.fontFamily": "ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', 'Oxygen Mono', 'Ubuntu Monospace', 'Source Code Pro', 'Fira Mono', 'Droid Sans Mono', 'Courier New', monospace",
55
"editor.fontLigatures": false,
6-
"editor.fontSize": 24,
6+
"editor.fontSize": 22,
77
"editor.formatOnPaste": true,
88
"editor.formatOnSave": true,
99
"editor.lineNumbers": "on",

Finished/Ch_1/challenge_solution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# 4: Print the top 10 most significant events
1212

1313
# open the data file and load the JSON
14-
with open("../../30DayQuakes.json", "r") as datafile:
14+
with open("../../30DayQuakes.json", "r", encoding="utf-8") as datafile:
1515
data = json.load(datafile)
1616

1717
# 1: We can just use the provided data, or we can use len() to get the length of the "features"

0 commit comments

Comments
 (0)