Skip to content

Commit

Permalink
Update pyaedt/modules/Material.py
Browse files Browse the repository at this point in the history
Co-authored-by: Kathy Pippert <[email protected]>
  • Loading branch information
amichel0205 and PipKat committed Feb 26, 2024
1 parent 583c353 commit bf1298c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyaedt/modules/Material.py
Original file line number Diff line number Diff line change
Expand Up @@ -1394,7 +1394,7 @@ def material_appearance(self, appearance_props):
if i < 3:
rgb_int = int(appearance_props[i])
if rgb_int < 0 or rgb_int > 255:
raise ValueError("RGB value must be between 0 and 255")
raise ValueError("RGB value must be between 0 and 255.")
value.append(rgb_int)
else:
transparency = float(appearance_props[i])
Expand Down

0 comments on commit bf1298c

Please sign in to comment.