Ignore E731 in objmgr

Ignore the error E731 "do not assign a lambda expression,
use a def" in the mapper repository as it would require
3x the number of lines of code to create separate def functions
and avoid syntax errors when running on the BMC. According
to the python documentation under their Programming Recommendations,
E731 is intended to aid debug, as the variable assigned to the lambda
would just show as <lambda> in a traceback.

Fixes openbmc/openbmc#2796

Change-Id: Id9248ec1f3d1a8c736749ba138d9c0e39d92e5ce
Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
2 files changed
tree: b6a3b544673be457806b5fe6c1fa063a88ec534f
  1. fail-monitor/
  2. libmapper/
  3. obmc/
  4. .gitignore
  5. bootstrap.sh
  6. configure.ac
  7. LICENSE
  8. Makefile.am
  9. phosphor-mapper
  10. README.md
  11. setup.cfg
  12. setup.py.in
README.md

To Build

To build this package, do the following steps:

    1. ./bootstrap.sh
    2. ./configure ${CONFIGURE_FLAGS}
    3. make

To full clean the repository again run `./bootstrap.sh clean`.