Skip to content

Commit f6d63af

Browse files
authored
Fix non-escaped quotes
1 parent aae51ae commit f6d63af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/tutorial/climada_util_calibrate.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@
10391039
"from climada.util.constants import SYSTEM_DIR\n",
10401040
"\n",
10411041
"emdat = pd.read_csv(SYSTEM_DIR / \"tc_impf_cal_v01_EDR.csv\")\n",
1042-
"emdat_subset = emdat[(emdat["cal_region2"] == \"NA1\") & (emdat["year"] >= 2010)]\n",
1042+
"emdat_subset = emdat[(emdat[\"cal_region2\"] == \"NA1\") & (emdat[\"year\"] >= 2010)]\n",
10431043
"emdat_subset"
10441044
]
10451045
},

0 commit comments

Comments
 (0)