Skip to content

Commit b0e596e

Browse files
committed
some more fixes
1 parent 6c6c6a5 commit b0e596e

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

pyoma/browser/db.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
from __future__ import division, print_function
1+
from __future__ import division, print_function, unicode_literals
2+
from builtins import chr, range, object, zip, bytes, str
23

34
import collections
45
import io
@@ -11,7 +12,6 @@
1112
import threading
1213
import time
1314
from bisect import bisect_left
14-
from builtins import chr, range, object, zip, bytes
1515
from xml.etree import ElementTree as et
1616
import fuzzyset
1717
import dateutil

pyoma/browser/suffixsearch.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import division, print_function, absolute_import, unicode_literals
2+
from builtins import bytes, str, range, str
13
from bisect import bisect_left
24
import os
35
import numpy

tests/browser/test_db.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from __future__ import division, print_function
2-
from builtins import chr, bytes
1+
from __future__ import division, print_function, unicode_literals
2+
from builtins import chr, bytes, str
33
import random
44
import types
55
import unittest

tests/browser/test_models.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
from builtins import bytes, range
1+
from __future__ import unicode_literals, division, absolute_import
2+
from builtins import bytes, range, str
23

34
import numpy
45
from pyoma.browser import models, db, tablefmt

0 commit comments

Comments
 (0)