Appease linter

This commit is contained in:
Luke Murphy
2020-07-08 00:20:39 +02:00
parent 5e5ff4b89d
commit ca21c317da
3 changed files with 2 additions and 16 deletions

View File

@ -1,3 +1,2 @@
"""simple-message-channels module."""
from simple_message_channels.smc import SimpleMessageChannel # noqa

View File

@ -1,11 +1,10 @@
"""Sans I/O wire protocol for Hypercore"""
__all__ = ["SimpleMessageChannel"]
from typing import List, Optional
import attr
import pyvarint
__all__ = ["SimpleMessageChannel"]
@attr.s(auto_attribs=True)
class SimpleMessageChannel: