Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny-stakewise committed Nov 6, 2024
1 parent cbe8a56 commit 8ba0e4c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions sw_utils/protocol_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ def build_protocol_config(
raise ValueError('Invalid exit signature threshold')

vault_exiting_validators_limit_bps = config_data.get('vault_exiting_validators_limit_bps') or 0
os_token_vaults = [
Web3.to_checksum_address(v) for v in config_data.get('os_token_vaults', [])
]
os_token_vaults = [Web3.to_checksum_address(v) for v in config_data.get('os_token_vaults', [])]

return ProtocolConfig(
oracles=oracles,
Expand Down

0 comments on commit 8ba0e4c

Please sign in to comment.