Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lectures/python_oop.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,10 @@ It takes a little while to get used to the syntax so we'll provide plenty of exa
We'll use the following imports:

```{code-cell} ipython
%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
plt.rcParams['figure.figsize'] = (10,6)
```

## OOP Review
Expand Down