GeoStat-Framework / GSTools

GSTools - A geostatistical toolbox: random fields, variogram estimation, covariance models, kriging and much more
https://geostat-framework.org
GNU Lesser General Public License v3.0
546 stars 72 forks source link

Generator: add abstract __init__ #259

Closed MuellerSeb closed 2 years ago

MuellerSeb commented 2 years ago

The abstract __init__ was missing in the abstract generator base class.

MuellerSeb commented 2 years ago

Needed to ignore W0231 in pylint (super-init-not-called), since abstract __init__ routines will only be excluded from that rule with the next pylint release (2.15).

See: https://github.com/PyCQA/pylint/issues/3975