Skip to content

Commit

Permalink
clean up relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
obriencj committed Mar 16, 2017
1 parent 079fee6 commit 35fa264
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion brine/__init__.py
Expand Up @@ -38,11 +38,11 @@
"""


from ._cellwork import CellType, cell_get_value, cell_from_value
from abc import ABCMeta, abstractmethod
from functools import partial
from types import BuiltinFunctionType, BuiltinMethodType
from types import FunctionType, MethodType, CodeType
from ._cellwork import CellType, cell_get_value, cell_from_value

import copy_reg
import new
Expand Down
4 changes: 2 additions & 2 deletions brine/barrel.py
Expand Up @@ -23,8 +23,8 @@


from abc import ABCMeta
from brine import BrinedObject, BrinedFunction, BrinedMethod, BrinedPartial
from brine._cellwork import cell_get_value, cell_set_value, cell_from_value
from . import BrinedObject, BrinedFunction, BrinedMethod, BrinedPartial
from ._cellwork import cell_get_value, cell_set_value, cell_from_value
from functools import partial
from itertools import imap
from types import BuiltinFunctionType, BuiltinMethodType
Expand Down
6 changes: 3 additions & 3 deletions brine/queues.py
Expand Up @@ -30,10 +30,10 @@
"""


from abc import ABCMeta
from brine import brine, unbrine
from . import brine, unbrine
from .barrel import Barrel
from multiprocessing.queues import Queue, JoinableQueue, SimpleQueue
from abc import ABCMeta
from multiprocessing.queues import JoinableQueue, Queue, SimpleQueue


__all__ = (
Expand Down

0 comments on commit 35fa264

Please sign in to comment.