src/pyams_utils/tests/test_utilsdocstrings.py
branchdev-tf
changeset 419 05ff71a02b2d
parent 367 2c95d34496f5
child 435 4504a27af426
--- a/src/pyams_utils/tests/test_utilsdocstrings.py	Sat Nov 23 01:17:56 2019 +0100
+++ b/src/pyams_utils/tests/test_utilsdocstrings.py	Sat Nov 23 14:51:46 2019 +0100
@@ -46,7 +46,7 @@
     docs = [doc for doc in docs if not doc.startswith('__')]
 
     for test in docs:
-        fd = open(os.path.join(package_dir, test))
+        fd = open(os.path.join(package_dir, test))  # pylint: disable=invalid-name
         content = fd.read()
         fd.close()
         if '>>> ' not in content: