We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 84a4e14 + 665c5c0 commit 3471e9fCopy full SHA for 3471e9f
VERSION
@@ -1 +1 @@
1
-0.2.16
+0.3.1
src/wechaty_puppet_hostie/puppet.py
@@ -24,7 +24,7 @@
24
import re
25
from typing import Optional, List
26
from dataclasses import asdict
27
-import xml.dom.minidom
+import xml.dom.minidom # type: ignore
28
import requests
29
30
from chatie_grpc.wechaty import ( # type: ignore
@@ -867,6 +867,10 @@ def _init_puppet(self):
867
868
host, port = self.options.end_point.split(':')
869
self.channel = Channel(host=host, port=port)
870
+
871
+ # pylint: disable=W0212
872
+ self.channel._authority = self.options.token
873
874
self._puppet_stub = PuppetStub(self.channel)
875
876
async def start(self) -> None:
0 commit comments