Skip to content

Commit

Permalink
build 0.1.3
Browse files Browse the repository at this point in the history
fix import error
  • Loading branch information
dolacmeo committed Oct 10, 2022
1 parent 7c76a0c commit 4eb51b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions acfunsdk_ws/acim.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
# coding=utf-8
from .acws import AcWebSocket
from acfunsdk import Acer
from acfunsdk.source import AcSource

__author__ = 'dolacmeo'


class AcIM(AcWebSocket):

def __init__(self, acer: Acer, ws_links: [list, None] = None):
assert acer.is_logined is True
ws_links = AcSource.websocket_links if ws_links is None else ws_links
def __init__(self, acer, ws_links: [list, None] = None):
super().__init__(acer, ws_links)

def reader(self, seq_id: int, command, result):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "acfunsdk-ws"
version = "0.1.2"
version = "0.1.3"
description = "acfunsdk - websocket"
license = "MIT"
authors = ["dolacmeo <dolacmeo@gmail.com>"]
Expand Down

0 comments on commit 4eb51b3

Please sign in to comment.