From 007403abcc6956a3e51a00ad1cdd60cff1cc129c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20C=2E=20Riven=C3=A6s?= Date: Tue, 7 Nov 2023 12:52:02 +0100 Subject: [PATCH] FIX: avoid pylint reporting missing members For unknown reasons, pylint reports "missing members" on eg. xtgeo:GridProperty() - silence this with this setting. --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 3474cf618..7797e69f3 100644 --- a/.pylintrc +++ b/.pylintrc @@ -11,7 +11,7 @@ argument-rgx=^[a-z_][_a-z0-9]+((_[a-z0-9]+)*)?$ dummy-variables-rgx=^_+[a-z0-9]*?$|dummy [TYPECHECK] -generated-members=np.*, numpy.*, pd.*, pandas.*, cxtgeo.*, matplotlib.* +generated-members=np.*, numpy.*, pd.*, pandas.*, cxtgeo.*, matplotlib.*, xtgeo.* [FORMAT] max-line-length=88