From 70f1637b239489e92e828c46c73655f14c0f4937 Mon Sep 17 00:00:00 2001 From: Robert Timms Date: Tue, 29 Nov 2022 09:34:52 +0000 Subject: [PATCH] update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f88547a..92270b3 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ my_params = bpx.parse_bpx_file(filename) print('Initial temperature of cell:', my_params.parameterisation.cell.initial_temperature) ``` -Alternatively, you can export the `BPX` as a dictionary and use the string names (aliases) of the parameters from the standard +Alternatively, you can export the `BPX` object as a dictionary and use the string names (aliases) of the parameters from the standard ```python my_params_dict = my_params.dict(by_alias=True) print('Initial temperature of cell:', my_params_dict["Parameterisation"]["Cell"]["Initial temperature [K]"])