Skip to content

Commit a8ad643

Browse files
committed
Remove unused enumerate() call as suggested in review
1 parent feaee7a commit a8ad643

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

malariagen_data/anoph/frq_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ def plot_frequencies_time_series(
385385

386386
# Build a long-form dataframe from the dataset.
387387
dfs = []
388-
for cohort_index, cohort in enumerate(df_cohorts.itertuples()):
388+
for cohort in df_cohorts.itertuples():
389389
ds_cohort = ds.isel(cohorts=cohort.Index)
390390
df = pd.DataFrame(
391391
{

0 commit comments

Comments
 (0)