1
1
Fork 0

load the json file
Some checks failed
Lint Code / Ruff (push) Successful in 7s
Lint Code / MyPy (push) Failing after 10s
Lint Code / Pylint (push) Failing after 10s

This commit is contained in:
Seaswimmer 2024-06-06 20:18:01 -04:00
parent a152737725
commit df27844a36
Signed by: cswimr
GPG key ID: 5D671B5D03D65A7F
2 changed files with 5 additions and 0 deletions

0
cars/__init__.py Normal file
View file

5
cars/main.py Normal file
View file

@ -0,0 +1,5 @@
import json
if __name__ == '__main__':
with open('cars.json') as f:
cars = json.load(f)