diff options
author | Jarrod Millman <jarrod.millman@gmail.com> | 2019-09-18 17:19:24 -0700 |
---|---|---|
committer | Jarrod Millman <jarrod.millman@gmail.com> | 2019-09-18 17:51:42 -0700 |
commit | 05fc2d7cb654bc56bca6b92e9b599f038f24e0c5 (patch) | |
tree | c2b7cd65ffa6f795b0403fdeee4028e9a1436a53 /networkx/algorithms/triads.py | |
parent | f75dbe89f83dd137d892f555b013880694b12568 (diff) | |
download | networkx-05fc2d7cb654bc56bca6b92e9b599f038f24e0c5.tar.gz |
Remove future imports needed by Py2
Diffstat (limited to 'networkx/algorithms/triads.py')
-rw-r--r-- | networkx/algorithms/triads.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/networkx/algorithms/triads.py b/networkx/algorithms/triads.py index 82fac01a..2d5dc842 100644 --- a/networkx/algorithms/triads.py +++ b/networkx/algorithms/triads.py @@ -10,7 +10,6 @@ # NetworkX is distributed under a BSD license; see LICENSE.txt for more # information. """Functions for analyzing triads of a graph.""" -from __future__ import division from networkx.utils import not_implemented_for |