Ditch named tuples for dataclasses.
[python_utils.git] / histogram.py
index 6f9c0f1e41750f0562293ffedfc4d8383a3f0aa8..2657c0bbd6c9f679808b80843b7c4c36c2f2eb1c 100644 (file)
@@ -5,7 +5,7 @@
 
 import math
 from dataclasses import dataclass
-from typing import Dict, Generic, Iterable, List, NamedTuple, Optional, Tuple, TypeVar
+from typing import Dict, Generic, Iterable, List, Optional, Tuple, TypeVar
 
 T = TypeVar("T", int, float)
 Bound = int