One of my methods has an attribute named ai
(as in, artificial intelligence), which is tripping up pylint
:
C0103: Attribute name "ai" doesn't conform to snake_case naming style (invalid-name)
I would like to avoid having to disable pylint
if at all possible, but I'm not sure what the actual issue is here, though changing the name to a_i
solves the issue, but I think that's just disgusting as a variable name.