Skip to content

Commit 23e72be

Browse files
nouizGrégoire
authored andcommitted
Add missing urllib import and order import as pep8.
1 parent 1f2bd27 commit 23e72be

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

code/rnnslu.py

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
import numpy
2-
import time
3-
import sys
4-
import subprocess
5-
import os
6-
import random
1+
from collections import OrderedDict
72
import copy
8-
import gzip
93
import cPickle
4+
import gzip
5+
import os
6+
import urllib
7+
import random
8+
import subprocess
9+
import sys
10+
import time
1011

11-
from collections import OrderedDict
12+
import numpy
1213

1314
import theano
1415
from theano import tensor as T

0 commit comments

Comments
 (0)