Skip to content

Commit

Permalink
Coverage linting
Browse files Browse the repository at this point in the history
No known V2 deployments have a dedicated deployer address
  • Loading branch information
BowTiedDevil committed Oct 12, 2024
1 parent 76139de commit fadd643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/degenbot/uniswap/v2_liquidity_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def __init__(
# Use degenbot deployment values if available
factory_deployment = FACTORY_DEPLOYMENTS[self.chain_id][self.factory]
self.init_hash = factory_deployment.pool_init_hash
if factory_deployment.deployer is not None: # pragma: no branch
if factory_deployment.deployer is not None: # pragma: no cover
deployer_address = factory_deployment.deployer
except KeyError:
# Deployment is unknown. Uses any inputs provided, otherwise use default values from
Expand Down

0 comments on commit fadd643

Please sign in to comment.