Skip to content

Commit 229f028

Browse files
committed
Fix trypo
1 parent 36a0f7c commit 229f028

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chaco/downsample/lttb.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
# Thanks for using Enthought open source!
1010
import logging
11-
import platofrm
11+
import platform
1212

1313
logger = logging.getLogger(__name__)
1414

@@ -20,7 +20,7 @@
2020
logger.warning(
2121
"Can't import _lttb extension module, lttb downsampling will not work."
2222
)
23-
if platofrm.system() == 'Darwin':
23+
if platform.system() == 'Darwin':
2424
# Disabling acceleration on MacOS see
2525
# https://github.com/enthought/chaco/issues/918
2626
_lttb = None

0 commit comments

Comments
 (0)