Skip to content

Commit 30efc14

Browse files
committed
The future is now
1 parent de276ee commit 30efc14

File tree

6 files changed

+0
-6
lines changed

6 files changed

+0
-6
lines changed

sfs/array.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
:members: take
1313
1414
"""
15-
from __future__ import division # for Python 2.x
1615
from collections import namedtuple
1716
import numpy as np
1817
from . import util

sfs/plot.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
"""Plot sound fields etc."""
2-
from __future__ import division
32
import matplotlib.pyplot as plt
43
from matplotlib import __version__ as matplotlib_version
54
from matplotlib.patches import PathPatch

sfs/time/drivingfunction.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
.. include:: math-definitions.rst
44
55
"""
6-
from __future__ import division
76
import numpy as np
87
from numpy.core.umath_tests import inner1d # element-wise inner product
98
from .. import defs

sfs/time/soundfield.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Compute sound field."""
22

3-
from __future__ import division
43
from .. import util
54
from .. import defs
65
from .source import point

sfs/time/source.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
77
"""
88

9-
from __future__ import division
109
import numpy as np
1110
from .. import util
1211
from .. import defs

sfs/util.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
55
"""
66

7-
from __future__ import division
87
import collections
98
import numpy as np
109
from scipy.special import spherical_jn, spherical_yn

0 commit comments

Comments
 (0)