revert, since not working in python3.8...

This commit is contained in:
Philip Eisenlohr 2022-11-18 11:01:01 -05:00
parent 822a098659
commit d374f6a02c
1 changed files with 3 additions and 3 deletions

View File

@ -232,9 +232,9 @@ class ConfigMaterial(Config):
_,idx = np.unique(np.hstack(list(kwargs_.values())),return_index=True,axis=0)
idx = np.sort(idx)
kwargs_ = {'phase':'phase_label',
'homogenization': 'homogenization_label'} \
| {k:np.atleast_1d(v[idx].squeeze()) for k,v in kwargs_.items()}
kwargs_ = {k:np.atleast_1d(v[idx].squeeze()) for k,v in kwargs_.items()}
for what in ['phase','homogenization']:
if what not in kwargs_: kwargs_[what] = what+'_label'
return ConfigMaterial().material_add(**kwargs_)