Skip to content

Commit

Permalink
fix - 1 ?
Browse files Browse the repository at this point in the history
  • Loading branch information
VanyaBelyaev committed Dec 23, 2024
1 parent 696f9d6 commit 3c9a1ff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ostap/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,10 @@ def _TO_draw_ ( obj , option = '', *args , **kwargs ) :

# ==================== =============================================
## update the pad/canvas
Ostap.Utils.pad_update ( pad )
try :
Ostap.Utils.pad_update ( pad )
except:
logger.error ( 'Exception here!!' , exc_info = True )

return result

Expand Down

0 comments on commit 3c9a1ff

Please sign in to comment.