FEM: femmesh: fix AttributeError: module 'numpy' has no attribute 'int'

This commit is contained in:
lorenz
2022-12-27 04:59:35 +01:00
committed by Bernd Hahnebach
parent be9d674785
commit 85f9ab3cf3

View File

@@ -489,7 +489,7 @@ def get_femelement_sets(
count_femelements = 0
referenced_femelements = np.zeros(
(max(femelement_table.keys()) + 1,),
dtype=np.int
dtype=int
)
has_remaining_femelements = None
for fem_object_i, fem_object in enumerate(fem_objects):