gokulakrishnansvm commented on code in PR #7424: URL: https://github.com/apache/trafficcontrol/pull/7424#discussion_r1156646403
########## traffic_control/clients/python/pylint.rc: ########## @@ -429,6 +429,12 @@ max-branches=15 # Maximum number of statements in function / method body. max-statements=80 +# Maximum number of locals for function / method body +max-locals=25 + +# Maximum number of arguments for function / method +max-args=10 + Review Comment: yes, There's a default value that was causing my code to not pass the linter. Error: Too many local variables (18/15) (too-many-locals), So i've added these max-locals in pylint.rc . I've removed these max-args as there is no use to have it in pylint.rc file -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
