mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2024-11-21 11:55:11 +01:00
Bump pylint from 2.15.10 to 2.16.1 (#374)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
This commit is contained in:
parent
6d2d069c72
commit
422f25f776
@ -355,7 +355,7 @@ class APIConnection:
|
||||
self._connection_state = ConnectionState.CLOSED
|
||||
self._cleanup()
|
||||
raise
|
||||
else:
|
||||
|
||||
self._connection_state = ConnectionState.CONNECTED
|
||||
self._connect_complete = True
|
||||
|
||||
|
@ -773,7 +773,7 @@ class UserService(APIModelBase):
|
||||
|
||||
def _join_split_uuid(value: List[int]) -> str:
|
||||
"""Convert a high/low uuid into a single string."""
|
||||
return str(UUID(int=((value[0] << 64) | value[1])))
|
||||
return str(UUID(int=(value[0] << 64) | value[1]))
|
||||
|
||||
|
||||
# value is likely a google.protobuf.pyext._message.RepeatedScalarContainer
|
||||
|
@ -1,4 +1,4 @@
|
||||
pylint==2.15.10
|
||||
pylint==2.16.1
|
||||
black==22.12.0
|
||||
flake8==6.0.0
|
||||
isort==5.11.4
|
||||
|
Loading…
Reference in New Issue
Block a user