From 8956f2a58526e27d3a13163ec6b313716fbc5d08 Mon Sep 17 00:00:00 2001 From: Isaac Meyer Date: Tue, 17 Jul 2018 15:49:02 -0500 Subject: [PATCH] Some cleanup for pr --- openmc/data/neutron.py | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/openmc/data/neutron.py b/openmc/data/neutron.py index 8023ff5902..9482c5bb04 100644 --- a/openmc/data/neutron.py +++ b/openmc/data/neutron.py @@ -1,6 +1,6 @@ -from __future__ import division, unicode_literals import sys -from collections import OrderedDict, Iterable, Mapping, MutableMapping +from collections import OrderedDict +from collections.abc import Iterable, Mapping, MutableMappingimport sys from io import StringIO from itertools import chain from math import log10 @@ -10,7 +10,6 @@ import shutil import tempfile from warnings import warn -from six import string_types import numpy as np import h5py @@ -108,6 +107,7 @@ class IncidentNeutron(EqualityMixin): :meth:`IncidentNeutron.from_ace`. Parameters + ---------- name : str Name of the nuclide using the GND naming convention atomic_number : int @@ -887,10 +887,3 @@ class IncidentNeutron(EqualityMixin): data[2].xs['0K'] = xs return data -import sys -from collections import OrderedDict -from collections.abc import Iterable, Mapping, MutableMapping -from io import StringIO -from itertools import chain -from math import log10 -from numbers import Integral, Real