Skip to content

Commit

Permalink
Fix line too long "lint error" in scenarios.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 572362464
Change-Id: I5d437b539d514e9a18880dfe9924fd957dea4f59
  • Loading branch information
duenez authored and Copybara-Service committed Oct 10, 2023
1 parent 270cd92 commit 0a5e1e5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions meltingpot/configs/scenarios/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,8 @@ def __post_init__(self):
tags={
'resident',
},
substrate='chemistry__three_metabolic_cycles_with_plentiful_distractors',
substrate=(
'chemistry__three_metabolic_cycles_with_plentiful_distractors'),
roles=('default',) * 8,
is_focal=(True,) * 5 + (False,) * 3,
bots_by_role={
Expand All @@ -535,7 +536,8 @@ def __post_init__(self):
tags={
'half_and_half',
},
substrate='chemistry__three_metabolic_cycles_with_plentiful_distractors',
substrate=(
'chemistry__three_metabolic_cycles_with_plentiful_distractors'),
roles=('default',) * 8,
is_focal=(True,) * 4 + (False,) * 4,
bots_by_role={
Expand All @@ -549,7 +551,8 @@ def __post_init__(self):
tags={
'half_and_half',
},
substrate='chemistry__three_metabolic_cycles_with_plentiful_distractors',
substrate=(
'chemistry__three_metabolic_cycles_with_plentiful_distractors'),
roles=('default',) * 8,
is_focal=(True,) * 4 + (False,) * 4,
bots_by_role={
Expand All @@ -565,7 +568,8 @@ def __post_init__(self):
tags={
'visitor',
},
substrate='chemistry__three_metabolic_cycles_with_plentiful_distractors',
substrate=(
'chemistry__three_metabolic_cycles_with_plentiful_distractors'),
roles=('default',) * 8,
is_focal=(True,) * 2 + (False,) * 6,
bots_by_role={
Expand Down

0 comments on commit 0a5e1e5

Please sign in to comment.