Skip to content

Commit eb56478

Browse files
committed
type hint fix
1 parent f072514 commit eb56478

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

studies/SolarMPPTMasses/OTS_MPPTs_analysis.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@
109109
},
110110
"outputs": [],
111111
"source": [
112-
"from typing import List\n",
112+
"",
113113
"\n",
114114
"\n",
115-
"def get_data(important_columns: List[str] = None):\n",
115+
"def get_data(important_columns: list[str] = None):\n",
116116
" if important_columns is None:\n",
117117
" important_columns = [\n",
118118
" \"name\",\n",

0 commit comments

Comments
 (0)