Skip to content

Commit

Permalink
No need for a try except here
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonPacewic committed Jul 24, 2024
1 parent d363aac commit ee7fb4e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions exporter/SynthesisFusionAddin/src/UI/ConfigCommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,11 +413,8 @@ def notify(self, args):
Args:
args (CommandEventArgs): command event argument
"""
try:
jointConfigTab.handlePreviewEvent(args)
gamepieceConfigTab.handlePreviewEvent(args)
except AttributeError:
pass
jointConfigTab.handlePreviewEvent(args)
gamepieceConfigTab.handlePreviewEvent(args)


class MySelectHandler(adsk.core.SelectionEventHandler):
Expand Down

0 comments on commit ee7fb4e

Please sign in to comment.