Skip to content

Commit

Permalink
Fixed flakes. (#2091)
Browse files Browse the repository at this point in the history
  • Loading branch information
ceball authored and philippjfr committed Nov 6, 2017
1 parent 03287dc commit 4b33029
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 10 deletions.
2 changes: 0 additions & 2 deletions doc/Tutorials/Containers.ipynb
Expand Up @@ -210,7 +210,6 @@
"outputs": [],
"source": [
"import numpy as np\n",
"from holoviews import Curve, ItemTable, Empty\n",
"sine_points = [(0.1*i, np.sin(0.1*i)) for i in range(100)]\n",
"cosine_points = [(0.1*i, np.cos(0.1*i)) for i in range(100)]\n",
"(hv.ItemTable([('A',1),('B',2)]) + hv.Curve(sine_points) + hv.Empty() + hv.Curve(cosine_points)).cols(2)"
Expand Down Expand Up @@ -487,7 +486,6 @@
"metadata": {},
"outputs": [],
"source": [
"from holoviews import NdLayout\n",
"hv.NdLayout(matrices, kdims=['phase', 'frequency'])[0:1.6, 0:2].cols(3)"
]
},
Expand Down
4 changes: 0 additions & 4 deletions doc/Tutorials/Exploring_Data.ipynb
Expand Up @@ -38,11 +38,7 @@
"outputs": [],
"source": [
"import json\n",
"import datetime as dt\n",
"\n",
"from itertools import product\n",
"\n",
"from matplotlib import pyplot as plt\n",
"import matplotlib.dates as md\n",
"\n",
"\n",
Expand Down
1 change: 0 additions & 1 deletion doc/Tutorials/Exporting.ipynb
Expand Up @@ -25,7 +25,6 @@
"metadata": {},
"outputs": [],
"source": [
"import numpy as np\n",
"import holoviews as hv\n",
"from holoviews.operation import contours\n",
"hv.notebook_extension()"
Expand Down
2 changes: 1 addition & 1 deletion doc/Tutorials/Linked_Streams.ipynb
Expand Up @@ -116,7 +116,7 @@
"outputs": [],
"source": [
"pointer_dmap = hv.DynamicMap(lambda x, y: hv.Points([(x, y)]), streams=[pointer])\n",
"print pointer.source is pointer_dmap"
"print(pointer.source is pointer_dmap)"
]
},
{
Expand Down
1 change: 0 additions & 1 deletion doc/Tutorials/Pandas_Seaborn.ipynb
Expand Up @@ -18,7 +18,6 @@
"import itertools\n",
"\n",
"import numpy as np\n",
"import pandas as pd\n",
"import seaborn as sb\n",
"import holoviews as hv\n",
"\n",
Expand Down
1 change: 0 additions & 1 deletion doc/Tutorials/Streams.ipynb
Expand Up @@ -8,7 +8,6 @@
"source": [
"import numpy as np\n",
"import holoviews as hv\n",
"import numpy as np\n",
"hv.notebook_extension()"
]
},
Expand Down

0 comments on commit 4b33029

Please sign in to comment.