From 535989ab10a00098f99446408620cd55b60e7dac Mon Sep 17 00:00:00 2001 From: Hung Pham Date: Sat, 27 Apr 2019 14:29:03 +0800 Subject: [PATCH] minor changes --- .pylintrc | 5 +++-- tests/conftest.py | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.pylintrc b/.pylintrc index f606fc6b..69dac2da 100644 --- a/.pylintrc +++ b/.pylintrc @@ -342,7 +342,8 @@ good-names=i, _, logger, dx, dy, dz, dq, q, - x, y, z, s, dt, F, g, a, b, c + x, y, z, s, dt, F, g, a, b, c, + N, ds # Include a hint for the correct naming format with invalid-name @@ -522,7 +523,7 @@ valid-metaclass-classmethod-first-arg=mcs [DESIGN] # Maximum number of arguments for function / method -max-args=5 +max-args=8 # Maximum number of attributes for a class (see R0902). max-attributes=7 diff --git a/tests/conftest.py b/tests/conftest.py index 384201a9..0f914bd4 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -14,7 +14,6 @@ def rave_env(): env = orpy.Environment() yield env env.Destroy() - orpy.RaveDestroy() def pytest_addoption(parser):