File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ def get_inequalities(self) -> pd.DataFrame:
112112 """
113113 return self ._get_parquet ("inequalities" )
114114
115- def _get_parquet (self , file ) -> pd .DataFrame :
115+ def _get_parquet (self , file : str ) -> pd .DataFrame :
116116 """Load specific parquet file using Pandas.
117117
118118 Args:
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ def _combine_model_results(
7676 }
7777
7878
79- def _combine_step_counts (results : list ):
79+ def _combine_step_counts (results : list ) -> pd . DataFrame :
8080 """Combine the step counts of the monte carlo runs.
8181
8282 Takes as input a list of lists, where the outer list contains an item for inpatients,
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def _run_model(
4747 data : Callable [[int , str ], Data ],
4848 hsa : Any ,
4949 run_params : dict ,
50- progress_callback ,
50+ progress_callback : Callable [[ Any ], None ] ,
5151 save_full_model_results : bool ,
5252) -> list [ModelRunResult ]:
5353 """Run the model iterations.
You can’t perform that action at this time.
0 commit comments