Skip to content

Commit

Permalink
Clean up imports of cPickle and StringIO
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Yolken committed Feb 4, 2017
1 parent 68592ae commit 7164061
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion superset/results_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

try:
import cPickle as pickle
except:
except ImportError:
import pickle

import logging
Expand Down
2 changes: 1 addition & 1 deletion tests/results_backends_tests.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
try:
import cPickle as pickle
except:
except ImportError:
import pickle

import mock
Expand Down

0 comments on commit 7164061

Please sign in to comment.