Revision ff7e04a52093241fc0745eceb2c8962002789801 authored by Collin Capano on 10 October 2017, 15:00:51 UTC, committed by GitHub on 10 October 2017, 15:00:51 UTC
* add ability to apply gates to generator

* apply gates to templates

* remove logging message

* resize to power 2 to prevent memory growth

* use for loop instead of list comprehension

* remove logging message
1 parent 31c3acd
Raw File
.landscape.yml
test-warnings: no
strictness: medium
autodetect: yes
ignore-patterns:
    - examples/*
    - test/*
    - docs/*
    - tools/*
    - build/*
    - dist/*
    - PyCBC.egg-info/*

pylint:
  disable:
  - too-many-arguments
  - too-many-locals
  - too-many-branches

pyflakes:
  disable:
  - F841

mccabe:
  disable:
  - MC0001
back to top