Skip to content

Commit

Permalink
Address remaining pylint complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco committed Nov 3, 2024
1 parent 557a0bf commit 1ba8d28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyhap/accessory_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def start(self):
and os.name != "nt"
):
logger.debug("Setting child watcher")
watcher = asyncio.SafeChildWatcher()
watcher = asyncio.SafeChildWatcher() # pylint: disable=deprecated-class
watcher.attach_loop(self.loop)
asyncio.set_child_watcher(watcher)
else:
Expand Down

0 comments on commit 1ba8d28

Please sign in to comment.