Skip to content

Commit 7c642f0

Browse files
committed
Remove py2 compat future imports
1 parent dbeedcc commit 7c642f0

File tree

3 files changed

+0
-13
lines changed

3 files changed

+0
-13
lines changed

examples/threejs/voxel_painter.ipynb

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,6 @@
2121
" - Delete voxel when shift-clicked"
2222
]
2323
},
24-
{
25-
"cell_type": "code",
26-
"execution_count": null,
27-
"metadata": {},
28-
"outputs": [],
29-
"source": [
30-
"from __future__ import division, print_function"
31-
]
32-
},
3324
{
3425
"cell_type": "code",
3526
"execution_count": null,

js/scripts/templates/py_top_level_init.mustache

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
# This file automatically generated by {{ generateScriptName }}
33
#
44

5-
from __future__ import absolute_import
6-
75
{{#each modules as |module|}}
86
from {{ module.pyRelativePath }} import *
97
{{/each}}

pythreejs/pythreejs.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
will use this foundation to build higher-level interfaces to build 3d plots.
1010
"""
1111

12-
from __future__ import absolute_import
13-
1412
from ipywidgets import Widget, widget_serialization
1513
from traitlets import Unicode, CInt, Instance, List, CFloat, Bool, observe, validate
1614
import numpy as np

0 commit comments

Comments
 (0)