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:
dependabot[bot] 2023-02-09 12:03:38 +13:00 committed by GitHub
parent 6d2d069c72
commit 422f25f776
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -355,9 +355,9 @@ class APIConnection:
self._connection_state = ConnectionState.CLOSED
self._cleanup()
raise
else:
self._connection_state = ConnectionState.CONNECTED
self._connect_complete = True
self._connection_state = ConnectionState.CONNECTED
self._connect_complete = True
async def login(self, check_connected: bool = True) -> None:
"""Send a login (ConnectRequest) and await the response."""

View File

@ -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

View File

@ -1,4 +1,4 @@
pylint==2.15.10
pylint==2.16.1
black==22.12.0
flake8==6.0.0
isort==5.11.4