Commit 34845b0e authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

devnet: make pythonic (#10215)

Fix non pythonic statement in the devnet, smol
change suggested by rabbit originally
parent 2f632e31
......@@ -158,7 +158,7 @@ def devnet_deploy(paths):
log.info('L1 genesis already generated.')
else:
log.info('Generating L1 genesis.')
if os.path.exists(paths.allocs_path) == False or DEVNET_FPAC == True:
if not os.path.exists(paths.allocs_path) or DEVNET_FPAC:
# If this is the FPAC devnet then we need to generate the allocs
# file here always. This is because CI will run devnet-allocs
# without DEVNET_FPAC=true which means the allocs will be wrong.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment