Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Use correct relative imports for gevent_zmq #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion zerorpc/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import uuid
import random

import gevent_zmq as zmq
from . import gevent_zmq as zmq


class Context(zmq.Context):
Expand Down
4 changes: 2 additions & 2 deletions zerorpc/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@
import gevent.local
import gevent.lock

import gevent_zmq as zmq
from . import gevent_zmq as zmq
from .exceptions import TimeoutExpired, RemoteError, LostRemote
from .channel import ChannelMultiplexer, BufferedChannel
from .socket import SocketBase
from .heartbeat import HeartBeatOnChannel
from .context import Context
from .decorators import DecoratorBase, rep
import patterns
from . import patterns
from logging import getLogger

logger = getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion zerorpc/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import gevent.lock


import gevent_zmq as zmq
from . import gevent_zmq as zmq
from .context import Context


Expand Down