Skip to content

Commit

Permalink
Small typing fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
bojan-karlas committed Dec 12, 2023
1 parent 7c25fbf commit 936b4de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion experiments/datascope/experiments/scenarios/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1296,7 +1296,7 @@ def get_instances(
else:
# Find distinct grouping attribute assignments.
all_values: List[Tuple] = []
partitioned = study.dataframe.groupby(partby)
partitioned = study.dataframe.groupby(partby) # type: ignore
if len(study.scenarios) > 0:
all_values = list(partitioned.groups.keys())

Expand Down

0 comments on commit 936b4de

Please sign in to comment.