From f444dc6ce8c1bed13129eab21ae9b81e426d8656 Mon Sep 17 00:00:00 2001 From: audiracmichelle Date: Sun, 10 Apr 2022 15:06:19 -0500 Subject: [PATCH] removed import from six.moves for compatibility with python 3.9. Tested on M1 Mac. --- pyhsmm/util/general.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyhsmm/util/general.py b/pyhsmm/util/general.py index 46a069f0..74057bf5 100644 --- a/pyhsmm/util/general.py +++ b/pyhsmm/util/general.py @@ -6,7 +6,7 @@ import scipy.linalg import copy, collections, os, shutil, hashlib from contextlib import closing -from six.moves.urllib.request import urlopen +from urllib.request import urlopen from itertools import chain, count from functools import reduce