We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36a0f7c commit 229f028Copy full SHA for 229f028
chaco/downsample/lttb.py
@@ -8,7 +8,7 @@
8
#
9
# Thanks for using Enthought open source!
10
import logging
11
-import platofrm
+import platform
12
13
logger = logging.getLogger(__name__)
14
@@ -20,7 +20,7 @@
20
logger.warning(
21
"Can't import _lttb extension module, lttb downsampling will not work."
22
)
23
-if platofrm.system() == 'Darwin':
+if platform.system() == 'Darwin':
24
# Disabling acceleration on MacOS see
25
# https://github.com/enthought/chaco/issues/918
26
_lttb = None
0 commit comments