Skip to content

Commit

Permalink
Fix code style issues with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Mar 7, 2024
1 parent b7201b4 commit e50fba9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/postprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1439,7 +1439,12 @@ def plot_attack_resilience(
)
num_scenarios = len(self.scenarios)
alpha_steps = 0.9 / num_scenarios
colors = ['#6c7075', '#e06234', '#F0B323', '#3D87CB',]
colors = [
"#6c7075",
"#e06234",
"#F0B323",
"#3D87CB",
]
for idx, x in enumerate(self.percolation):
if idx in exclude_scenarios:
continue
Expand Down

0 comments on commit e50fba9

Please sign in to comment.