Isilon / isilon_data_insights_connector

Connector to fetch stats from OneFS and push them to InfluxDB/Grafana
MIT License
76 stars 36 forks source link

Fix pylint complaint (add default value) #97

Closed tenortim closed 4 years ago

tenortim commented 4 years ago

The code is using the language arg unpacking rather than expicitly doing it, and recursively calling the class method with the wrong number of arguments (relying on the unpacking). Ideally, the code should do this explicitly but as a workaround, add a default to prevent pylint confusion.

Fixes issue #93