Skip to content

Commit 0ee53aa

Browse files
committed
fix line continuation
1 parent 3b65128 commit 0ee53aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lectures/inequality.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -839,8 +839,8 @@ max_year = plot_data.year.max()
839839
improve clarity in the chart including the different end years associated with each countries time series.
840840

841841
```{code-cell} ipython3
842-
labels = [1979, 1986, 1991, 1995, 2000, 2020, 2021, 2022] /
843-
+ list(range(min_year,max_year,5))
842+
labels = [1979, 1986, 1991, 1995, 2000, 2020, 2021, 2022] + \
843+
list(range(min_year,max_year,5))
844844
plot_data.year = plot_data.year.map(lambda x: x if x in labels else None)
845845
```
846846

0 commit comments

Comments
 (0)