Skip to content
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 ably/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from ably.types.options import Options, VCDiffDecoder
from ably.util.crypto import CipherParams
from ably.util.exceptions import AblyAuthException, AblyException, IncompatibleClientIdException
from ably.vcdiff.default_vcdiff_decoder import AblyVCDiffDecoder
from ably.vcdiff.defaultvcdiffdecoder import AblyVCDiffDecoder

logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())
Expand Down
2 changes: 1 addition & 1 deletion ably/realtime/realtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from typing import Optional

from ably.realtime.connection import Connection, ConnectionState
from ably.realtime.realtime_channel import Channels
from ably.realtime.realtimechannel import Channels
from ably.rest.rest import AblyRest

log = logging.getLogger(__name__)
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion ably/realtime/realtimepresence.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from ably.util.exceptions import AblyException

if TYPE_CHECKING:
from ably.realtime.realtime_channel import RealtimeChannel
from ably.realtime.realtimechannel import RealtimeChannel

log = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion test/ably/realtime/realtimechannel_publish_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest

from ably.realtime.connection import ConnectionState
from ably.realtime.realtime_channel import ChannelOptions, ChannelState
from ably.realtime.realtimechannel import ChannelOptions, ChannelState
from ably.transport.websockettransport import ProtocolMessageAction
from ably.types.message import Message
from ably.util.crypto import CipherParams
Expand Down
2 changes: 1 addition & 1 deletion test/ably/realtime/realtimechannel_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest

from ably.realtime.connection import ConnectionState
from ably.realtime.realtime_channel import ChannelOptions, ChannelState, RealtimeChannel
from ably.realtime.realtimechannel import ChannelOptions, ChannelState, RealtimeChannel
from ably.transport.websockettransport import ProtocolMessageAction
from ably.types.message import Message
from ably.util.exceptions import AblyException
Expand Down
2 changes: 1 addition & 1 deletion test/ably/realtime/realtimechannel_vcdiff_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from ably import AblyVCDiffDecoder
from ably.realtime.connection import ConnectionState
from ably.realtime.realtime_channel import ChannelOptions
from ably.realtime.realtimechannel import ChannelOptions
from ably.types.options import VCDiffDecoder
from test.ably.testapp import TestApp
from test.ably.utils import BaseAsyncTestCase, WaitableEvent
Expand Down
2 changes: 1 addition & 1 deletion test/ably/realtime/realtimeresume_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest

from ably.realtime.connection import ConnectionState
from ably.realtime.realtime_channel import ChannelState
from ably.realtime.realtimechannel import ChannelState
from ably.transport.websockettransport import ProtocolMessageAction
from test.ably.testapp import TestApp
from test.ably.utils import BaseAsyncTestCase, random_string
Expand Down
Loading