Hello, I have just started contributing to PyQtGraph. I was going to remove the import * statements, but I have seen tons of PEP-8 style violations. The only code style guidelines I have found so far are this ones:
Formatting Rules Suggestions - PyQtGraph prefers PEP8 for most style issues, but this is not enforced rigorously as long as the code is clean and readable. - Variable and Function/Methods that are intended to be part of the public API should be camelCase. - "Private" methods/variables should have a leading underscore (_) before the name. Why don't we embrace PEP-8 style? Tools like black makes it very easy to use. camelCase can be accepted because Qt uses it and otherwise it can be a mess, but things like ## comments are not good, right? -- You received this message because you are subscribed to the Google Groups "pyqtgraph" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyqtgraph/ab397836-6275-44eb-aea0-d9216c9925f3n%40googlegroups.com.
