Skip to content

Commit

Permalink
Adding docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
boazhaim committed Nov 6, 2024
1 parent bcd85da commit de40f30
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ def full_analysis(self):
Run all the analysis and returns a list of all the graphs created and their title
"""
for func in self._funcs_for_analysis:
# Since we don't know who we are calling and how they
# Behave, this is a way to protect all the functions
# In case a function is raising an exception.
try:
func()
except: # pylint: disable=bare-except
Expand Down

0 comments on commit de40f30

Please sign in to comment.