summaryrefslogtreecommitdiff
path: root/math_utils.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2021-10-31 13:08:51 -0700
committerScott Gasch <[email protected]>2021-10-31 13:08:51 -0700
commiteb9e6df32ed696158bf34dba6464277b648f5c74 (patch)
tree54ae278562008b0ffa834b2d34b2158d9119dc65 /math_utils.py
parent05a26ae305adfc47f38b8534ec8f35640df3955e (diff)
Ugh, a bunch of things. @overrides. --lmodule. Chromecasts. etc...
Diffstat (limited to 'math_utils.py')
-rw-r--r--math_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/math_utils.py b/math_utils.py
index fa0bc0e..e0e3f6c 100644
--- a/math_utils.py
+++ b/math_utils.py
@@ -6,7 +6,7 @@ from typing import List
from heapq import heappush, heappop
-class RunningMedian:
+class RunningMedian(object):
"""A running median computer.
>>> median = RunningMedian()