diff options
| author | BonfaceKilz | 2020-08-20 16:35:17 +0300 | 
|---|---|---|
| committer | BonfaceKilz | 2020-08-20 16:35:17 +0300 | 
| commit | 1f4fb6b24f3508d80be1f07cd62e38ac9385ef41 (patch) | |
| tree | bbe3a5966fb4c57b3e10b5550c1cc9c4d90d1b51 /wqflask/base | |
| parent | b32004bc517d9a58be52662297e541c23f60355b (diff) | |
| download | genenetwork2-1f4fb6b24f3508d80be1f07cd62e38ac9385ef41.tar.gz | |
Handle module renames in the standard library
Run: ``` 2to3-3.8 -f imports -w . && \ 2to3-3.8 -f imports2 -w . ``` See: <https://docs.python.org/2/library/2to3.html#2to3fixer-imports> and <https://docs.python.org/2/library/2to3.html#2to3fixer-imports2>
Diffstat (limited to 'wqflask/base')
| -rw-r--r-- | wqflask/base/data_set.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/wqflask/base/data_set.py b/wqflask/base/data_set.py index 43beec26..8151a29d 100644 --- a/wqflask/base/data_set.py +++ b/wqflask/base/data_set.py @@ -44,7 +44,7 @@ import codecs import json import requests import gzip -import cPickle as pickle +import pickle as pickle import itertools from redis import Redis | 
