Skip to content

Commit

Permalink
FIX: avoid pylint reporting missing members
Browse files Browse the repository at this point in the history
For unknown reasons, pylint reports "missing
members" on eg. xtgeo:GridProperty() - silence
this with this setting.
  • Loading branch information
jcrivenaes committed Nov 7, 2023
1 parent 3a3507c commit 007403a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 007403a

Please sign in to comment.