Hi, we are about fitting pylint's configuration to work with out software. One problem area is when we access SA models. Due to all attributes being set dynamically pylint assumes that we want to access non-existing attributes and reports either E1101 or E1103 error codes.
Does anyone have a way to either get around this - without globally disabling those errors in pylint (I also would miss really invalid attribute accesses) - without adding a # pylint: disable-msg=.... to each line where an attribute is used (would make python code rather unreadable) Help hint would be appreciated. Thanks, Ralph -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en.
