Skip to content

Commit c2e5dfa

Browse files
authored
Merge pull request #222 from ashfaq92/patch-1
Fix syntax error in JSON loading example
2 parents 1a157a0 + af4cd0b commit c2e5dfa

File tree

1 file changed

+1
-1
lines changed
  • Tutorials/whatiswot/website/docs/preliminary/json

1 file changed

+1
-1
lines changed

Tutorials/whatiswot/website/docs/preliminary/json/practice.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ We will now read a JSON file from the file system using a JSON library in Python
112112
import json
113113

114114
with open('JSON_example.json') as file:
115-
data: json.load(file)
115+
data = json.load(file)
116116

117117
print(data)
118118
```

0 commit comments

Comments
 (0)