Used isort to sort imports. Also added to the git pre-commit hook.
[python_utils.git] / math_utils.py
index 3216d4a9222f3e9760d2f5276b40503e08cfee8f..3953ae585d249123c17e82f4a829ad68cf442c0b 100644 (file)
@@ -2,8 +2,8 @@
 
 import functools
 import math
+from heapq import heappop, heappush
 from typing import List
-from heapq import heappush, heappop
 
 
 class RunningMedian(object):