Skip to content

Commit

Permalink
Further flake fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Feb 14, 2018
1 parent d078b82 commit 772eabe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion holoviews/core/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def run(self):
self.counter += 1
try:
self.callback(self.counter)
except Exception as e:
except Exception:
self.stop()

if self.timeout is not None:
Expand Down
2 changes: 1 addition & 1 deletion holoviews/plotting/bokeh/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ class PointDrawCallback(CDSCallback):
def initialize(self):
try:
from bokeh.models import PointDrawTool
except Exception as e:
except Exception:
param.main.warning('PointDraw requires bokeh >= 0.12.14')
return
renderers = [self.plot.handles['glyph_renderer']]
Expand Down

0 comments on commit 772eabe

Please sign in to comment.