Skip to content

Commit 3b9dd21

Browse files
committed
FIX: update syntax
1 parent 90c9831 commit 3b9dd21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lectures/inflation_history.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ This lecture also requires `pandas >= 2.1.4`
2828

2929
```{code-cell} ipython3
3030
:tags: [hide-output]
31-
import pandas as pd
31+
import pandas
3232
from packaging.version import Version
3333
from importlib import reload
34-
if Version(pd.__version__) < Version('2.1.4'):
34+
if Version(pandas.__version__) < Version('2.1.4'):
3535
!pip install pandas==2.1.4
3636
reload(pandas)
3737
```

0 commit comments

Comments
 (0)