Skip to content

Commit 18544e6

Browse files
author
Steffen Meinecke
committed
Fixes #56
1 parent 6119480 commit 18544e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

simbench/networks/profiles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def get_absolute_profiles_from_relative_profiles(
233233
missing = list(applied_profiles[~applied_profiles.isin(relative_profiles.columns)])
234234
if len(missing):
235235
raise ValueError("These profiles are set to be applied but are missing in the profiles "
236-
"data: " + str(missings))
236+
"data: " + str(missing))
237237
isna = applied_profiles.isnull()
238238
is_not_na_pos = np.arange(len(isna), dtype=int)[~isna.values]
239239
relative_profiles_vals[:, is_not_na_pos] = \

0 commit comments

Comments
 (0)