Skip to content

pickle free centroids hdf - #1076

Merged
emanuel-schmid merged 11 commits into
developfrom
feature/pickle_free_centroids_store
Aug 27, 2025
Merged

pickle free centroids hdf#1076
emanuel-schmid merged 11 commits into
developfrom
feature/pickle_free_centroids_store

remove ducplicated methods and obsolete lines

4e85273
Select commit
Loading
Failed to load commit list.
Jenkins - WCR / Pylint succeeded Aug 27, 2025 in 0s

2 new issues, 882 total

Total New Outstanding Fixed Trend
882 2 880 3 👍

Reference build: climada_branches » develop #1271

Details

Severity distribution of new issues

Error Warning High Warning Normal Warning Low
0 0 1 1

Annotations

Check warning on line 494 in climada/hazard/centroids/centr.py

See this annotation in the file changed.

@jenkins-wcr jenkins-wcr / Pylint

unidiomatic-typecheck

LOW:
Use isinstance() rather than type() for a typecheck.
Raw output
The idiomatic way to perform an explicit typecheck in Python is to useisinstance(x, Y) rather than type(x) == Y, type(x) is Y. Though there areunusual situations where these give different results.

Check warning on line 491 in climada/hazard/centroids/centr.py

See this annotation in the file changed.

@jenkins-wcr jenkins-wcr / Pylint

unused-variable

NORMAL:
Unused variable 'fig'
Raw output
Used when a variable is defined but not used.