From 8c31731edfcc450cca1bf982f4f49008cd229154 Mon Sep 17 00:00:00 2001 From: jalbrekt85 Date: Thu, 18 Jul 2024 04:46:38 +0000 Subject: [PATCH] style: ci lint with `black` --- fee_allocator/accounting/distribution.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fee_allocator/accounting/distribution.py b/fee_allocator/accounting/distribution.py index 33c31ded..be7237fa 100644 --- a/fee_allocator/accounting/distribution.py +++ b/fee_allocator/accounting/distribution.py @@ -73,7 +73,7 @@ def handle_aura_min(incentives: dict, min_aura_incentive: Decimal): """ # First we shift all incentives from pools that are under the min_aura_incentive to the balancer market # We keep track of our debt to the Aura market - + overrides = requests.get(OVERRIDES_URL).json() debt_to_aura_market = 0 for pool_id, _data in incentives.items(): @@ -81,7 +81,7 @@ def handle_aura_min(incentives: dict, min_aura_incentive: Decimal): override_aura_to_bal = override_data.get("voting_pool_override") == "bal" if _data["aura_incentives"] < min_aura_incentive or override_aura_to_bal: - # if _data["aura_incentives"] < min_aura_incentive: + # if _data["aura_incentives"] < min_aura_incentive: # Calculate incentives to redistribute incentives_to_redistribute = _data["aura_incentives"] # Set incentives to redistribute to 0