Remove pylint:disable

This commit is contained in:
mhchia
2019-08-02 23:19:36 +08:00
parent 06a9511ab4
commit 2e94fcf56c
36 changed files with 7 additions and 64 deletions

View File

@ -20,7 +20,6 @@ class RawConnection(IRawConnection):
writer: asyncio.StreamWriter,
initiator: bool,
) -> None:
# pylint: disable=too-many-arguments
self.conn_ip = ip
self.conn_port = port
self.reader = reader

View File

@ -1,6 +1,5 @@
from abc import ABC, abstractmethod
# pylint: disable=too-few-public-methods
class IRawConnection(ABC):