Skip to content

Commit

Permalink
type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
bpaulin committed Jun 9, 2020
1 parent e0a11df commit 81d436f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions brownpaperbag/bpbgate.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,11 @@ class BpbGate:

ENCODING = "utf-8"
TIMEOUT = 3
_socket = None
_logger = None
_logger = None # type: logging.Logger
_light_ids = None
_cover_ids = None
_writer = None
_reader = None
_writer = None # type: asyncio.StreamWriter
_reader = None # type: asyncio.StreamReader

def __init__(self, host, port, pwd):
"""Constructor."""
Expand Down

0 comments on commit 81d436f

Please sign in to comment.