Skip to content

Commit ff97d65

Browse files
Apply suggestions from code review
fix bare except Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 3c8608c commit ff97d65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vedo/assembly.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def __iadd__(self, obj):
137137
if a:
138138
try:
139139
self.AddPart(a)
140-
except:
140+
except AttributeError:
141141
self.AddPart(a.actor)
142142
return self
143143

0 commit comments

Comments
 (0)