Add twitch support #6

Merged
skeh merged 3 commits from provider/twitch into main 2021-04-08 07:13:28 +00:00
1 changed files with 1 additions and 5 deletions
Showing only changes of commit 83936e01b1 - Show all commits

View File

@ -1,6 +1,6 @@
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
from multiprocessing import Process, Pipe, Queue from multiprocessing import Process, Pipe, Queue
from aenum import Enum, auto from enum import Enum, auto
from traceback import format_exception from traceback import format_exception
import time import time
@ -40,10 +40,6 @@ class ChatProcess(Process, ABC):
def control_pipe(self): def control_pipe(self):
return self._caller_pipe return self._caller_pipe
@property
def deamon(self):
return True
@property @property
def state(self): def state(self):
pass pass