Skip to content

Commit

Permalink
Fix leftovers from the merge...
Browse files Browse the repository at this point in the history
  • Loading branch information
ikalchev committed May 26, 2018
1 parent 694fb95 commit 2696c30
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ $ pip3 uninstall HAP-python
## API <a name="API"></a>

A typical flow for using HAP-python starts with implementing an Accessory. This is done by
subclassing [AsyncAccessory](pyhap/accessory.py) and putting in place a few details
subclassing [Accessory](pyhap/accessory.py) and putting in place a few details
(see below). After that, you give your accessory to an AccessoryDriver to manage. This
will take care of advertising it on the local network, setting a HAP server and
running the Accessory. Take a look at [main.py](main.py) for a quick start on that.
Expand Down
6 changes: 0 additions & 6 deletions pyhap/accessory_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,6 @@ def __init__(self, *, address=None, port=51234,
a digit.
:type pincode: bytearray
:param pincode: The pincode that HAP clients must prove they know in order
to pair with this `Accessory`. Defaults to None, in which case a random
pincode is generated. The pincode has the format "xxx-xx-xxx", where x is
a digit.
:type pincode: bytearray
:param port: The local port on which the accessory will be accessible.
In other words, this is the port of the HAPServer.
:type port: int
Expand Down

0 comments on commit 2696c30

Please sign in to comment.