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 32f5f42 commit 60f83c7Copy full SHA for 60f83c7
.travis.yml
@@ -25,4 +25,4 @@ install:
25
- pip install -e .
26
- if [[ $TRAVIS_OS_NAME == linux && $PYTHON_VERSION != 2.7 ]]; then jupyter labextension install .; fi
27
script:
28
- - flake8 ipycanvas
+ - flake8 ipycanvas --ignore=E501
ipycanvas/binary.py
@@ -1,10 +1,4 @@
1
"""Binary module."""
2
-
3
-try:
4
- from io import BytesIO as StringIO # python3
5
-except:
6
- from StringIO import StringIO # python2
7
8
import numpy as np
9
10
ipycanvas/nbextension/__init__.py
@@ -4,6 +4,7 @@
# Copyright (c) Martin Renou
# Distributed under the terms of the Modified BSD License.
+
def _jupyter_nbextension_paths():
return [{
'section': 'notebook',
0 commit comments