Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e19530b

Browse files
authored
Update categorical_variables.py
1 parent 003e909 commit e19530b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

galleries/examples/lines_bars_and_markers/categorical_variables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"""
99
import matplotlib.pyplot as plt
1010

11-
data : dict[str, int] = {'apple': 10, 'orange': 15, 'lemon': 5, 'lime': 20}
11+
data: dict[str, int] = {'apple': 10, 'orange': 15, 'lemon': 5, 'lime': 20}
1212
names = list(data.keys())
1313
values = list(data.values())
1414

0 commit comments

Comments
 (0)