[Mod] WebsocketClient改名为WebSocketClient

This commit is contained in:
nanoric 2018-10-15 04:45:41 -04:00
parent 90d25fa536
commit 788677370f
3 changed files with 4 additions and 4 deletions

View File

@ -2,10 +2,10 @@
import unittest
from Promise import Promise
from vnpy.api.websocket import WebsocketClient
from vnpy.api.websocket import WebSocketClient
class TestWebsocketClient(WebsocketClient):
class TestWebsocketClient(WebSocketClient):
def __init__(self):
host = 'wss://echo.websocket.org'

View File

@ -12,7 +12,7 @@ from threading import Thread, Lock
import websocket
class WebsocketClient(object):
class WebSocketClient(object):
"""Websocket API"""
#----------------------------------------------------------------------

View File

@ -1 +1 @@
from .WebSocketClient import WebsocketClient
from .WebSocketClient import WebSocketClient