-
Notifications
You must be signed in to change notification settings - Fork 69
Closed
Description
A copy pasta to initialize the scheme_info variable make it wrong.
Lines 134 to 135 in 52b10bd
| with open(os.path.join(rootpath, '_cnames.json')) as f: | |
| scheme_info = json.loads(f.read()) |
The copy-paste is wrong, not because of "a bad name for a variable", but because the content loaded is not the expected one. The file _cnames.json does not embed the wanted information in the following line:
Line 152 in 52b10bd
| if scheme_info[base_code] == 'Qualitative': |
Fix
Replace by the right file.
with open(os.path.join(rootpath, 'scheme_info.json')) as f:
scheme_info = json.loads(f.read()) Other comment
It may fix #104, python-visualization/folium#1270, but not sure, I have not tested.
Metadata
Metadata
Assignees
Labels
No labels