Skip to content

Commit 4a77e59

Browse files
committed
Rename tpl->x
1 parent 1667c21 commit 4a77e59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gnomad/utils/annotations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2336,13 +2336,13 @@ def _create_group_dicts(
23362336
# The bin_freq should be in order but we can verify the order from bin_edges.
23372337
ab_bin_freq = list(
23382338
map(
2339-
lambda tpl: tpl[1],
2339+
lambda x: x[1],
23402340
sorted(
23412341
zip(
23422342
input_struct.ab_hist_alt.bin_edges,
23432343
input_struct.ab_hist_alt.bin_freq,
23442344
),
2345-
key=lambda tpl: tpl[0],
2345+
key=lambda x: x[0],
23462346
),
23472347
)
23482348
)

0 commit comments

Comments
 (0)