Skip to content

Commit

Permalink
added invalid-name pylint disable instruction because the framework r…
Browse files Browse the repository at this point in the history
…equires camel case instead of snake case

Signed-off-by: Mark Cohen <[email protected]>
  • Loading branch information
macohen committed Jan 19, 2024
1 parent e1da940 commit 6866675
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async def asyncSetUp(self) -> None:
await add_connection("default", self.client)

async def asyncTearDown(self) -> None:
# pylint disable=invalid-name
# pylint: disable=invalid-name
if self.client:
await self.client.close()

Expand Down

0 comments on commit 6866675

Please sign in to comment.