Skip to content

Commit

Permalink
Drop bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
agners committed Apr 29, 2024
1 parent 022d72b commit 877b1d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controller/python/chip/ChipDeviceCtrl.py
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ def deviceAvailable(self, device, err):

# The callback might have been received synchronously (during self._ChipStack.Call()).
# In that case the Future has already been set it will return immediately
if (timeoutMs):
if timeoutMs:
timeout = float(timeoutMs) / 1000
await asyncio.wait_for(future, timeout=timeout)
else:
Expand Down

0 comments on commit 877b1d8

Please sign in to comment.