Python style: suppress pylint bad-continuation for yapf compatibility
This commit is contained in:
parent
8db79e2e71
commit
ff9a426b2a
|
|
@ -95,3 +95,5 @@ disable=
|
|||
no-else-return,
|
||||
# NOTE(lidiz): Python 3 make object inheritance default, but not PY2
|
||||
useless-object-inheritance,
|
||||
# NOTE(sergiitk): yapf compatibility, ref #25071
|
||||
bad-continuation,
|
||||
|
|
|
|||
|
|
@ -98,3 +98,5 @@ disable=
|
|||
no-else-return,
|
||||
# NOTE(lidiz): Python 3 make object inheritance default, but not PY2
|
||||
useless-object-inheritance,
|
||||
# NOTE(sergiitk): yapf compatibility, ref #25071
|
||||
bad-continuation,
|
||||
|
|
|
|||
|
|
@ -124,3 +124,5 @@ disable=
|
|||
no-else-return,
|
||||
# NOTE(lidiz): Python 3 make object inheritance default, but not PY2
|
||||
useless-object-inheritance,
|
||||
# NOTE(sergiitk): yapf compatibility, ref #25071
|
||||
bad-continuation,
|
||||
|
|
|
|||
Loading…
Reference in New Issue