From 5c4a7c43d1dbd2d0d941019031873e68b10eaa85 Mon Sep 17 00:00:00 2001 From: Joachim Lusiardi Date: Tue, 7 Apr 2020 18:28:47 +0200 Subject: [PATCH] add explanatory comment --- homekit/controller/tools.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/homekit/controller/tools.py b/homekit/controller/tools.py index 618526c3..4fe91e32 100644 --- a/homekit/controller/tools.py +++ b/homekit/controller/tools.py @@ -148,6 +148,10 @@ def add_pairing(self, additional_controller_pairing_identifier, ios_device_ltpk, class DummyPairing(AbstractPairing): + """ + Dummy implementation of a AbstractPairing handle Pairings in a configuration that might currently not be supported. + """ + def __init__(self, pairing_data, connection_type): self.pairing_data = pairing_data self.connection_type = connection_type