From 3d35c8a65d9088438ae5fdb48f267929aa6567cc Mon Sep 17 00:00:00 2001 From: soulless-viewer <29832584+soulless-viewer@users.noreply.github.com> Date: Thu, 22 Feb 2024 14:07:42 +0100 Subject: [PATCH] chore: adjust pylint params to adhere PEP8 --- .pylintrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pylintrc b/.pylintrc index 31003cc..774b35f 100644 --- a/.pylintrc +++ b/.pylintrc @@ -271,7 +271,7 @@ generated-members= [FORMAT] # Maximum number of characters on a single line. -max-line-length=80 +max-line-length=79 # TODO(https://github.com/PyCQA/pylint/issues/3352): Direct pylint to exempt # lines made too long by directives to pytype. @@ -298,7 +298,7 @@ max-module-lines=99999 # spaces. Google's externaly-published style guide says 4, consistent with # PEP 8. Here, we use 2 spaces, for conformity with many open-sourced Google # projects (like TensorFlow). -indent-string=' ' +indent-string=' ' # Number of spaces of indent required inside a hanging or continued line. indent-after-paren=4 @@ -444,4 +444,4 @@ valid-metaclass-classmethod-first-arg=mcs # "Exception" overgeneral-exceptions=StandardError, Exception, - BaseException \ No newline at end of file + BaseException